protocol property
Implementation
String get protocol {
final scheme = _uri?.scheme;
if (scheme == null) return ':';
return '$scheme:';
}
String get protocol {
final scheme = _uri?.scheme;
if (scheme == null) return ':';
return '$scheme:';
}