abstract_router
stack
Stack
<
T
>
push method
push
abstract_router
stack
Stack
<
T
>
push method
Stack class
Constructors
Stack
Properties
isEmpty
isNotEmpty
top
hashCode
runtimeType
Methods
join
pop
push
noSuchMethod
toString
Operators
operator ==
push
method
void
push
(
T
item
)
Implementation
void push(T item) { _data.add(item); }