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