Transform values of Left and Right
Future<Either<TL, TR>> either<TL, TR>( TL Function(L left) fnL, TR Function(R right) fnR) => this.then((either) => either.either(fnL, fnR));