StreamBinder<T> constructor

const StreamBinder<T>(
  1. StateBuilder<T, Stream<T>> fn, {
  2. T? pendingValue,
  3. ErrorBuilder<T>? catchError,
  4. Equals<T>? equals,
  5. DisposeCallback<T>? dispose,
  6. String? name,
})

Implementation

const StreamBinder(
  this.fn, {
  this.pendingValue,
  this.catchError,
  this.equals,
  this.dispose,
  this.name,
});