LastErrorExtension class
class LastErrorExtension extends ChromeObject { LastErrorExtension(); LastErrorExtension.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy); /** * Description of the error that has taken place. */ String get message => jsProxy['message']; }
Extends
ChromeObject > LastErrorExtension
Constructors
new LastErrorExtension() #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
LastErrorExtension();
new LastErrorExtension.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
LastErrorExtension.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
final String message #
Description of the error that has taken place.
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();