allFrames property
      
      bool?
      get
      allFrames
      
    
    
If allFrames is true, implies that the CSS should be removed from all
frames of current page. By default, it's false and is only removed from
the top frame. If true and frameId is set, then the code is removed
from the selected frame and all of its child frames.
Implementation
bool? get allFrames => _wrapped.allFrames;
      
      set
      allFrames
      (bool? v) 
      
    
    
    
Implementation
set allFrames(bool? v) {
  _wrapped.allFrames = v;
}