thenRightSync<TR> method
- @Deprecated('Should use thenRight')
- Either<
L, TR> fnR(- 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));