clearError method
Clears the validation error without changing the field value.
Similar to Flutter's FormFieldState.clearError.
Implementation
@override
void clearError() {
for (final fieldBloc in state.flatFieldBlocs) {
fieldBloc.clearError();
}
}