Transforms the contained value using the provided function f, returning a new Right.
f
@override Either<L, R2> map<R2>(R2 Function(R right) f) { return Right<L, R2>(f(value)); }