thenLeftSync<TL> method

  1. @Deprecated('Should use thenLeft')
Future<Either<TL, R>> thenLeftSync<TL>(
  1. Either<TL, R> fnL(
    1. L left
    )
)

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

Implementation

@Deprecated('Should use thenLeft')
Future<Either<TL, R>> thenLeftSync<TL>(Either<TL, R> Function(L left) fnL) =>
    this.then((either) => either.thenLeft(fnL));