InputImeCommitTextParams class
class InputImeCommitTextParams extends ChromeObject {
InputImeCommitTextParams({int contextID, String text}) {
if (contextID != null) this.contextID = contextID;
if (text != null) this.text = text;
}
InputImeCommitTextParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
/**
* ID of the context where the text will be committed
*/
int get contextID => jsProxy['contextID'];
set contextID(int value) => jsProxy['contextID'] = value;
/**
* The text to commit
*/
String get text => jsProxy['text'];
set text(String value) => jsProxy['text'] = value;
}
Extends
ChromeObject > InputImeCommitTextParams
Constructors
new InputImeCommitTextParams({int contextID, String text}) #
Create a new instance of a ChromeObject, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
InputImeCommitTextParams({int contextID, String text}) {
if (contextID != null) this.contextID = contextID;
if (text != null) this.text = text;
}
new InputImeCommitTextParams.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
InputImeCommitTextParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
int contextID #
ID of the context where the text will be committed
int get contextID => jsProxy['contextID'];
set contextID(int value) => jsProxy['contextID'] = value;
String text #
The text to commit
String get text => jsProxy['text'];
set text(String value) => jsProxy['text'] = value;
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();