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