FutureResult<T, E> typedef

FutureResult<T, E> = Future<Result<T, E>>

A shorthand type notation for Result futures FutureResult<int,String> func() async {}

Implementation

typedef FutureResult<T, E> = Future<Result<T, E>>;