frameUrl property

String? get frameUrl

If specified, the expression is evaluated on the iframe whose URL matches the one specified. By default, the expression is evaluated in the top frame of the inspected page.

Implementation

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

Implementation

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