notify method

  1. @override
void notify()
override

Notifies current Stream.

Implementation

@override
void notify() {
  if (_stream.isClosed) {
    return;
  }

  _stream.add(_value);
}