blur method

CursorModel blur()

Blurs the cursor, stopping the blink animation.

Implementation

CursorModel blur() {
  _blinkTimer?.cancel();
  return copyWith(focus: false, blink: true);
}