clearError method

void clearError()

Clears the current error state of Ease and notifies listeners.

Implementation

void clearError() {
  _error = null;
  _listener?.call();
}