uri property

String get uri

Gets the unique resource identifier.

Implementation

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

Sets the unique resource identifier.

Implementation

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