PropertyMask constructor

PropertyMask({
  1. Iterable<String>? propertyPaths,
})

Implementation

factory PropertyMask({
  $core.Iterable<$core.String>? propertyPaths,
}) {
  final $result = create();
  if (propertyPaths != null) {
    $result.propertyPaths.addAll(propertyPaths);
  }
  return $result;
}