call<C> method

  1. @override
State<S, C> call<C>(
  1. covariant State<S, C> state
)
override

Chain multiple functions having the same state S.

Implementation

@override
State<S, C> call<C>(covariant State<S, C> state) => flatMap((_) => state);