TaskEither<A, B> constructor
Factory constructor to create a TaskEither from a computation.
Example:
final computation = TaskEither(() => Future.value(Right<String, int>(5)));
Implementation
factory TaskEither(Future<e.Either<A, B>> Function() value) =
_TaskEither<A, B>;