andThen<C> method
Chain the result of then
to this StateAsync.
Implementation
@override
StateAsync<S, C> andThen<C>(covariant StateAsync<S, C> Function() then) =>
flatMap((_) => then());
Chain the result of then
to this StateAsync.
@override
StateAsync<S, C> andThen<C>(covariant StateAsync<S, C> Function() then) =>
flatMap((_) => then());