andThen<B> method
Run this ReaderTask and right after the ReaderTask returned from then
.
Implementation
@override
ReaderTask<E, B> andThen<B>(covariant ReaderTask<E, B> Function() then) =>
flatMap(
(_) => then(),
);
Run this ReaderTask and right after the ReaderTask returned from then
.
@override
ReaderTask<E, B> andThen<B>(covariant ReaderTask<E, B> Function() then) =>
flatMap(
(_) => then(),
);