EventSinkSignalMixin
EventSinkSignalMixin is a mixin for a Signal that implements EventSink.
This allows you to use the signal as a EventSink anywhere you would use a EventSink in Dart.
.add()
When add
is called it will set the value of the signal.
.addError()
When addError
is called it will set the error of the signal.
.close()
When close
is called it will dispose the signal and remove all listeners.