uri property

String uri

Gets the unique resource identifier.

Implementation

String get uri => _uri;
void uri=(String value)

Sets the unique resource identifier.

Implementation

set uri(String value) {
  _uri = value;
  PdfActionHelper.getHelper(this)
      .dictionary
      .setString(PdfDictionaryProperties.uri, _uri);
}