applyAfterware method

  1. @override
Stream<WareContext<T>> applyAfterware(
  1. Stream<WareContext<T>> input
)
override

Implementation

@override
Stream<WareContext<T>> applyAfterware(Stream<WareContext<T>> input) {
  // This Bloc takes no action after reducing is complete.
  return input;
}