forDesktop method

TestDocumentConfigurator forDesktop({
  1. TextInputSource inputSource = TextInputSource.keyboard,
})

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

Implementation

TestDocumentConfigurator forDesktop({
  TextInputSource inputSource = TextInputSource.keyboard,
}) {
  _gestureMode = DocumentGestureMode.mouse;
  return this;
}