menu
flutter_reactive package
documentation
extensions/list.dart
ReactiveList<T>
add method
add method
dark_mode
light_mode
add
method
void
add
(
T
item
)
Adds
item
to the end of the list.
Implementation
void add(T item) => value = [...value, item];
flutter_reactive package
documentation
extensions/list
ReactiveList<T>
add method
ReactiveList extension on
Reactive
<
List
<
T
>
>