pendingUrl property
String?
get
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;
set
pendingUrl
(String? v)
Implementation
set pendingUrl(String? v) {
_wrapped.pendingUrl = v;
}