match<A> method
Implementation
Future<A> match<A>(A Function(T value) ok, A Function(E error) err) =>
_future.then((res) => res.match(ok, err));
Future<A> match<A>(A Function(T value) ok, A Function(E error) err) =>
_future.then((res) => res.match(ok, err));