pendingUrl property

String? pendingUrl

The URL the tab is navigating to, before it has committed. This property is only present if the extension's manifest includes the "tabs" permission and there is a pending navigation.

Implementation

String? get pendingUrl => _wrapped.pendingUrl;
void pendingUrl=(String? v)

Implementation

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