menu
scouting_app_2024
agent\parts\option.dart
Option
<
A
,
B
>
onGood method
onGood
brightness_4
brightness_5
onGood
method
void
onGood
(
void
fx
(
A
value
)
)
Implementation
void onGood(void Function(A value) fx) { if (_value != null) { fx.call(_value); } }
scouting_app_2024
option
Option
<
A
,
B
>
onGood method
Option class