FutureEither<T> typedef

FutureEither<T> = Future<Either<Failure, T>>

A type alias for a Future that completes with an EitherFailure.

Used for asynchronous operations that can fail and return a result of type T.

Implementation

typedef FutureEither<T> = Future<Either<Failure, T>>;