Dart Documentationchrome.inputInputImeSetCandidateWindowPropertiesParams

InputImeSetCandidateWindowPropertiesParams class

class InputImeSetCandidateWindowPropertiesParams extends ChromeObject {
 InputImeSetCandidateWindowPropertiesParams({String engineID, PropertiesInputIme properties}) {
   if (engineID != null) this.engineID = engineID;
   if (properties != null) this.properties = properties;
 }
 InputImeSetCandidateWindowPropertiesParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 /**
  * ID of the engine to set properties on.
  */
 String get engineID => jsProxy['engineID'];
 set engineID(String value) => jsProxy['engineID'] = value;

 PropertiesInputIme get properties => _createPropertiesInputIme(jsProxy['properties']);
 set properties(PropertiesInputIme value) => jsProxy['properties'] = jsify(value);
}

Extends

ChromeObject > InputImeSetCandidateWindowPropertiesParams

Constructors

new InputImeSetCandidateWindowPropertiesParams({String engineID, PropertiesInputIme properties}) #

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

docs inherited from ChromeObject
InputImeSetCandidateWindowPropertiesParams({String engineID, PropertiesInputIme properties}) {
 if (engineID != null) this.engineID = engineID;
 if (properties != null) this.properties = properties;
}

new InputImeSetCandidateWindowPropertiesParams.fromProxy(JsObject jsProxy) #

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

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

Properties

String engineID #

ID of the engine to set properties on.

String get engineID => jsProxy['engineID'];
set engineID(String value) => jsProxy['engineID'] = value;

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

PropertiesInputIme properties #

PropertiesInputIme get properties => _createPropertiesInputIme(jsProxy['properties']);
set properties(PropertiesInputIme value) => jsProxy['properties'] = jsify(value);

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();