menu
sharing package
documentation
remote/network/either.dart
Either<L, R>
mapWithIndex<B> method
mapWithIndex<B> method
dark_mode
light_mode
mapWithIndex<
B
>
method
Either
<
L
,
B
>
mapWithIndex
<
B
>(
B
f
(
int
i
,
R
r
)
)
Implementation
Either<L, B> mapWithIndex<B>(B Function(int i, R r) f) => map((R r) => f(0, r));
sharing package
documentation
remote/network/either
Either<L, R>
mapWithIndex<B> method
Either class