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