transpose method

Future<Result<Option<S>, F>> transpose()

Transposes an FutureOption of a Result into a Result of an Option.

Implementation

@pragma("vm:prefer-inline")
Future<Result<Option<S>, F>> transpose() async {
  return then((result) => result.transpose());
}