addFirst method
void
addFirst(
- T item
Adds item to the end of the list.
Implementation
void addFirst(T item) => value = [item, ...value];
Adds item to the end of the list.
void addFirst(T item) => value = [item, ...value];