DocumentMask.fromJson constructor

DocumentMask.fromJson(
  1. Map json_
)

Implementation

DocumentMask.fromJson(core.Map json_)
    : this(
        fieldPaths: json_.containsKey('fieldPaths')
            ? (json_['fieldPaths'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );