data property

T? get data

Most recent data emitted from the stream.

Implementation

T? get data {
  throwIfDisposed('get data');
  return _data.value;
}