setCursorPosition method

Future<bool> setCursorPosition(
  1. SetCursorPositionParameters parameters
)

Set the position of the cursor in the candidate window. This is a no-op if this extension does not own the active IME. returns Called when the operation completes

Implementation

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