call method

  1. @Deprecated('Use .add instead. This was kept for backwards compatibility. Will be removed in 3.0.0')
Stream<T?> call([
  1. T? v
])

Implementation

@Deprecated('Use .add instead. This was kept for backwards compatibility. Will be removed in 3.0.0')
Stream<T?> call([T? v]) {
  add(v);
  return stream;
}