notify method

void notify(
  1. T data
)

Implementation

void notify(T data){
  if(_isDisposed) return;
  sink.add(data);
}