addError method
Adds an error
to the sink.
Must not be called on a closed sink.
Implementation
@override
void addError(Object error, [StackTrace? stackTrace]) {
_currentValue.setError(error, stackTrace);
_controller.addError(error, stackTrace);
}