uri property

String get uri

The URI of the resource.

Implementation

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