url property

String? get url

The last committed URL of the main frame of the tab. This property is only present if the extension's manifest includes the "tabs" permission and may be an empty string if the tab has not yet committed. See also Tab.pendingUrl.

Implementation

String? get url => _wrapped.url;
set url (String? v)

Implementation

set url(String? v) {
  _wrapped.url = v;
}