dcli
dcli
StackList
<
T
>
push method
push
push
method
Null safety
void
push
(
T
item
)
push an
item
onto th stack.
Implementation
void push(T item) { _stack.addFirst(item); }
dcli
dcli
StackList
<
T
>
push method
StackList class
Constructors
StackList
fromList
Properties
hashCode
isEmpty
runtimeType
Methods
asList
noSuchMethod
peek
pop
push
toString
Operators
operator ==