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