Dart Documentationchrome.inputInputImeClearCompositionParams

InputImeClearCompositionParams class

class InputImeClearCompositionParams extends ChromeObject {
 InputImeClearCompositionParams({int contextID}) {
   if (contextID != null) this.contextID = contextID;
 }
 InputImeClearCompositionParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 /**
  * ID of the context where the composition will be cleared
  */
 int get contextID => jsProxy['contextID'];
 set contextID(int value) => jsProxy['contextID'] = value;
}

Extends

ChromeObject > InputImeClearCompositionParams

Constructors

new InputImeClearCompositionParams({int contextID}) #

Create a new instance of a ChromeObject, which creates and delegates to a JsObject proxy.

docs inherited from ChromeObject
InputImeClearCompositionParams({int contextID}) {
 if (contextID != null) this.contextID = contextID;
}

new InputImeClearCompositionParams.fromProxy(JsObject jsProxy) #

Create a new instance of a ChromeObject, which delegates to the given JsObject proxy.

docs inherited from ChromeObject
InputImeClearCompositionParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

Properties

int contextID #

ID of the context where the composition will be cleared

int get contextID => jsProxy['contextID'];
set contextID(int value) => jsProxy['contextID'] = value;

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

Methods

JsObject toJs() #

inherited from ChromeObject
JsObject toJs() => jsProxy;

String toString() #

inherited from ChromeObject

Returns a string representation of this object.

docs inherited from Object
String toString() => jsProxy.toString();