uri property

String get uri

The URI of the resource to unsubscribe from.

Implementation

String get uri {
  final uri = _value['uri'] as String?;
  if (uri == null) {
    throw ArgumentError('Missing uri field in $UnsubscribeRequest.');
  }
  return uri;
}