menu
sharing package
documentation
remote/network/either.dart
Either<L, R>
leftMap<L2> method
leftMap<L2> method
dark_mode
light_mode
leftMap<
L2
>
method
Either
<
L2
,
R
>
leftMap
<
L2
>(
L2
f
(
L
l
)
)
Implementation
Either<L2, R> leftMap<L2>(L2 Function(L l) f) => fold((L l) => left(f(l)), right);
sharing package
documentation
remote/network/either
Either<L, R>
leftMap<L2> method
Either class