url property

Uri? url
inherited

Retrieves the URL for additional information

Implementation

Uri? get url => getProperty<UriProperty>(UriProperty.propertyNameUrl)?.uri;
void url=(Uri? value)
inherited

Sets the URL for additional information

Implementation

set url(Uri? value) => setOrRemoveProperty(UriProperty.propertyNameUrl,
    UriProperty.create(UriProperty.propertyNameUrl, value));