andThen<C> method
- covariant TaskEither<
L, C> then(
override
If running this TaskEither returns Right, then return the result of calling then
.
Otherwise return Left.
Implementation
@override
TaskEither<L, C> andThen<C>(covariant TaskEither<L, C> Function() then) =>
flatMap((_) => then());