setCandidateWindowProperties method

Future<bool> setCandidateWindowProperties(
  1. SetCandidateWindowPropertiesParameters parameters
)

Sets the properties of the candidate window. This fails if the extension doesn't own the active IME returns Called when the operation completes.

Implementation

Future<bool> setCandidateWindowProperties(
    SetCandidateWindowPropertiesParameters parameters) async {
  var $res = await promiseToFuture<bool>(
      $js.chrome.input.ime.setCandidateWindowProperties(parameters.toJS));
  return $res;
}