uri property
String
get
uri
The URI of the resource to subscribe to. The URI can use any protocol; it is up to the server how to interpret it.
Implementation
String get uri {
final uri = _value[Keys.uri] as String?;
if (uri == null) {
throw ArgumentError('Missing ${Keys.uri} field in $SubscribeRequest.');
}
return uri;
}