LastErrorRuntime class
class LastErrorRuntime extends ChromeObject {
LastErrorRuntime();
LastErrorRuntime.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
/**
* Details about the error which occurred.
*/
String get message => jsProxy['message'];
}
Extends
ChromeObject > LastErrorRuntime
Constructors
new LastErrorRuntime() #
Create a new instance of a ChromeObject, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
LastErrorRuntime();
new LastErrorRuntime.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
LastErrorRuntime.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
final String message #
Details about the error which occurred.
String get message => jsProxy['message'];
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();