andThenAsync<U extends Object> abstract method

Future<Result<U, E>> andThenAsync<U extends Object>(
  1. Future<Result<U, E>> op(
    1. T
    )
)

Asynchronously calls op with the Ok value if the result is Ok, otherwise returns this.

Implementation

Future<Result<U, E>> andThenAsync<U extends Object>(
  Future<Result<U, E>> Function(T) op,
);