Uri_Protocol constructor Null safety
- {Uri_Schema? schema,
- String? name}
Implementation
factory Uri_Protocol({
Uri_Schema? schema,
$core.String? name,
}) {
final _result = create();
if (schema != null) {
_result.schema = schema;
}
if (name != null) {
_result.name = name;
}
return _result;
}