menu
betto_common
collections.dart
Stack
<
E
>
push method
push
dark_mode
light_mode
push
method
void
push
(
E
item
)
Pushes an element onto the top of the stack.
Implementation
void push(E item) => _list.add(item);
betto_common
collections
Stack
<
E
>
push method
Stack class