clear method

void clear()

Implementation

void clear() {
  for (final c in _controllers) {
    c.clear();
  }
  _focusNodes.first.requestFocus();
  _notifyChanged();
}