ChromeDevtoolsInspectedWindow class 
 
    
    
    
  
    
  
    Methods
    
        - 
  eval(String expression, EvalOptions? options)
    → Future<EvalResult>
  
  
- 
  Evaluates a JavaScript expression in the context of the main frame of the
inspected page. The expression must evaluate to a JSON-compliant object,
otherwise an exception is thrown. The eval function can report either a
DevTools-side error or a JavaScript exception that occurs during
evaluation. In either case, the resultparameter of the callback isundefined. In the case of a DevTools-side error, theisExceptionparameter is non-null and hasisErrorset to true andcodeset to an
error code. In the case of a JavaScript error,isExceptionis set to
true andvalueis set to the string value of thrown object.expressionAn expression to evaluate.optionsThe options parameter can contain one or more options.returnsA function called when evaluation completes.
- 
  getResources()
    → Future<List<Resource>>
  
  
- 
  Retrieves the list of resources from the inspected page.
returnsA function that receives the list of resources when the
request completes.
- 
  noSuchMethod(Invocation invocation)
    → dynamic
  
  
- 
  Invoked when a nonexistent method or property is accessed.
  inherited 
- 
  reload(ReloadOptions? reloadOptions)
    → void
  
  
- 
  Reloads the inspected page.
  
- 
  toString()
    → String
  
  
- 
  A string representation of this object.
  inherited