ProjectProperties constructor

ProjectProperties({
  1. Iterable<Property>? properties,
})

Implementation

factory ProjectProperties({
  $core.Iterable<Property>? properties,
}) {
  final _result = create();
  if (properties != null) {
    _result.properties.addAll(properties);
  }
  return _result;
}