$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,
      );