blur method

void blur()

Blurs the textarea.

Implementation

void blur() {
  if (!_model.focused) return;
  _model.blur();
  notifyListeners();
}