menu
sharing package
documentation
remote/network/either.dart
Either<L, R>
orElse method
orElse method
dark_mode
light_mode
orElse
method
Either
<
L
,
R
>
orElse
(
Either
<
L
,
R
>
other
()
)
Implementation
Either<L, R> orElse(Either<L, R> Function() other) => fold((_) => other(), (_) => this);
sharing package
documentation
remote/network/either
Either<L, R>
orElse method
Either class