If the Either is Left, then change its value from type L to type C using function f.
L
C
f
@override Either<C, R> mapLeft<C>(C Function(L a) f) => Right<C, R>(_value);