allFrames property
bool?
get
allFrames
Whether the script should inject into all frames within the tab. Defaults
to false.
This must not be true if frameIds
is specified.
Implementation
bool? get allFrames => _wrapped.allFrames;
set
allFrames
(bool? v)
Implementation
set allFrames(bool? v) {
_wrapped.allFrames = v;
}