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