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