ime property
JSInputIme
get
ime
Use the chrome.input.ime
API to implement a custom IME for Chrome OS.
This allows your extension to handle keystrokes, set the composition, and
manage the candidate window.
Implementation
JSInputIme get ime {
var imeNullable = this.imeNullable;
if (imeNullable == null) {
throw ApiNotAvailableException('chrome.input.ime');
}
return imeNullable;
}