MediaFileSystemsDetails class
class MediaFileSystemsDetails extends ChromeObject { MediaFileSystemsDetails({GetMediaFileSystemsInteractivity interactive}) { if (interactive != null) this.interactive = interactive; } MediaFileSystemsDetails.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy); GetMediaFileSystemsInteractivity get interactive => _createGetMediaFileSystemsInteractivity(jsProxy['interactive']); set interactive(GetMediaFileSystemsInteractivity value) => jsProxy['interactive'] = jsify(value); }
Extends
ChromeObject > MediaFileSystemsDetails
Constructors
new MediaFileSystemsDetails({GetMediaFileSystemsInteractivity interactive}) #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
MediaFileSystemsDetails({GetMediaFileSystemsInteractivity interactive}) { if (interactive != null) this.interactive = interactive; }
new MediaFileSystemsDetails.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
MediaFileSystemsDetails.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
GetMediaFileSystemsInteractivity interactive #
GetMediaFileSystemsInteractivity get interactive => _createGetMediaFileSystemsInteractivity(jsProxy['interactive']);
set interactive(GetMediaFileSystemsInteractivity value) => jsProxy['interactive'] = jsify(value);
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();