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;
}