startFloatingCursorGesture method

Future<void> startFloatingCursorGesture()

Simulates the user holding the spacebar and starting the floating cursor gesture.

The initial offset is at (0,0).

Implementation

Future<void> startFloatingCursorGesture() async {
  await _updateFloatingCursor(action: "FloatingCursorDragState.start", offset: Offset.zero);
}