OnEventEvent class
Fired whenever debugging target issues instrumentation event.
class OnEventEvent { /** * The debuggee that generated this event. */ final Debuggee source; /** * Method name. Should be one of the notifications defined by the [remote * debugging * protocol](http://code.google.com/chrome/devtools/docs/remote-debugging.html). */ final String method; /** * JSON object with the response. Structure of the response varies depending * on the method and is defined by the remote debugging protocol. * `optional` * * JSON object with the response. Structure of the response varies depending * on the method and is defined by the remote debugging protocol. */ final Map<String, dynamic> params; OnEventEvent(this.source, this.method, this.params); }
Constructors
new OnEventEvent(Debuggee source, String method, Map<String, dynamic> params) #
Creates a new Object
instance.
Object
instances have no meaningful state, and are only useful
through their identity. An Object
instance is equal to itself
only.
docs inherited from Object
OnEventEvent(this.source, this.method, this.params);
Properties
final String method #
Method name. Should be one of the notifications defined by the remote debugging protocol.
final String method
final Map<String, dynamic> params #
JSON object with the response. Structure of the response varies depending
on the method and is defined by the remote debugging protocol.
optional
JSON object with the response. Structure of the response varies depending on the method and is defined by the remote debugging protocol.
final Map<String, dynamic> params