menu
effect_dart package
documentation
effect_dart.dart
Effect<A, E, R>
map<B> method
map<B> method
dark_mode
light_mode
map<
B
>
method
Effect
<
B
,
E
,
R
>
map
<
B
>(
B
f
(
A
)
)
Maps the success value of this effect
Implementation
Effect<B, E, R> map<B>(B Function(A) f) => _Map(this, f);
effect_dart package
documentation
effect_dart
Effect<A, E, R>
map<B> method
Effect class