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['uri'] as String?;
  if (uri == null) {
    throw ArgumentError('Missing uri field in $SubscribeRequest.');
  }
  return uri;
}