DocumentMask constructor

DocumentMask({
  1. Iterable<String>? fieldPaths,
})

Implementation

factory DocumentMask({
  $core.Iterable<$core.String>? fieldPaths,
}) {
  final _result = create();
  if (fieldPaths != null) {
    _result.fieldPaths.addAll(fieldPaths);
  }
  return _result;
}