SimpleStream<T> constructor

SimpleStream<T>({
  1. bool isSync = false,
  2. bool runInZone = false,
})

Implementation

SimpleStream({bool isSync = false, bool runInZone = false})
    : _isSync = isSync,
      _runInZone = runInZone;