menu
stl
stl.dart
Stack
<
T
>
push method
push
dark_mode
light_mode
push
method
void
push
(
T
value
)
Pushes an element onto the top of the stack.
Implementation
void push(T value) { _container.insertLast(value); }
stl
stl
Stack
<
T
>
push method
Stack class