forDesktop method

TestSuperEditorConfigurator forDesktop({
  1. TextInputSource inputSource = TextInputSource.ime,
})

Configures the SuperEditor for standard desktop interactions, e.g., mouse and keyboard input.

Implementation

TestSuperEditorConfigurator forDesktop({
  TextInputSource inputSource = TextInputSource.ime,
}) {
  _config.inputSource = inputSource;
  _config.gestureMode = DocumentGestureMode.mouse;
  return this;
}