andThen<C> method

  1. @override
StateAsync<S, C> andThen<C>(
  1. covariant StateAsync<S, C> then()
)
override

Chain the result of then to this StateAsync.

Implementation

@override
StateAsync<S, C> andThen<C>(covariant StateAsync<S, C> Function() then) =>
    flatMap((_) => then());