Dart Documentationchrome.browserActionImageDataType

ImageDataType class

Pixel data for an image. Must be an ImageData object (for example, from a canvas element).

class ImageDataType extends ChromeObject {
 ImageDataType();
 ImageDataType.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
}

Extends

ChromeObject > ImageDataType

Constructors

new ImageDataType() #

Create a new instance of a ChromeObject, which creates and delegates to a JsObject proxy.

docs inherited from ChromeObject
ImageDataType();

new ImageDataType.fromProxy(JsObject jsProxy) #

Create a new instance of a ChromeObject, which delegates to the given JsObject proxy.

docs inherited from ChromeObject
ImageDataType.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

Methods

JsObject toJs() #

inherited from ChromeObject
JsObject toJs() => jsProxy;

String toString() #

inherited from ChromeObject

Returns a string representation of this object.

docs inherited from Object
String toString() => jsProxy.toString();