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