frameUrl property

String? 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;
void frameUrl=(String? v)

Implementation

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