disposeErrorManagement method
void
disposeErrorManagement()
Dispose resources used in this mixin.
This will nullify error title and message and dispose the ValueNotifier.
Implementation
void disposeErrorManagement() {
_errorTitle = null;
_errorMessage = null;
_hasError.dispose();
}