stopBackspaceRepeating method

void stopBackspaceRepeating()

Stops the active backspace timer.

Implementation

void stopBackspaceRepeating() {
  _backspaceTimer?.cancel();
  _backspaceTimer = null;
}