Dart Documentationchrome.downloadsGetFileIconOptions

GetFileIconOptions class

class GetFileIconOptions extends ChromeObject {
 GetFileIconOptions({int size}) {
   if (size != null) this.size = size;
 }
 GetFileIconOptions.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 int get size => jsProxy['size'];
 set size(int value) => jsProxy['size'] = value;
}

Extends

ChromeObject > GetFileIconOptions

Constructors

new GetFileIconOptions({int size}) #

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

docs inherited from ChromeObject
GetFileIconOptions({int size}) {
 if (size != null) this.size = size;
}

new GetFileIconOptions.fromProxy(JsObject jsProxy) #

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

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

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

int size #

int get size => jsProxy['size'];
set size(int value) => jsProxy['size'] = value;

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();