and<S2> method

FutureResult<S2, F> and<S2>(
  1. Result<S2, F> other
)

Implementation

@pragma("vm:prefer-inline")
FutureResult<S2, F> and<S2>(Result<S2, F> other) {
  return then((result) => result.and(other));
}