error property
dynamic
get
error
Getter for retrieving the current error state of Ease.
Implementation
dynamic get error => _error;
set
error
(dynamic error)
Setter for updating the error state of Ease and notifying listeners.
Implementation
set error(dynamic error) {
_error = error;
_listener?.call();
}