url property

String get url

The URL currently associated with this frame, if the frame identified by the frameId existed at one point in the given tab. The fact that an URL is associated with a given frameId does not imply that the corresponding frame still exists.

Implementation

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

Implementation

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