thenRightSync<TR> method

  1. @Deprecated('Should use thenRight')
Future<Either<L, TR>> thenRightSync<TR>(
  1. Either<L, TR> fnR(
    1. R right
    )
)

Transform value of Right when transformation may be finished with an error

Implementation

@Deprecated('Should use thenRight')
Future<Either<L, TR>> thenRightSync<TR>(
        Either<L, TR> Function(R right) fnR) =>
    this.then((either) => either.then(fnR));