thenRight<TR> method

Future<Either<L, TR>> thenRight<TR>(
  1. FutureOr<Either<L, TR>> fnR(
    1. R right
    )
)

Async transform value of Right when transformation may be finished with an error

Implementation

Future<Either<L, TR>> thenRight<TR>(
        FutureOr<Either<L, TR>> Function(R right) fnR) =>
    this.then((either) => either.thenAsync(fnR));