Dart SDK
dart:collection
LinkedList
add
add
Dart SDK
dart:collection
LinkedList
add
method
add
Source
Dart SDK
dart:collection
LinkedList
Properties
first
hashCode
isEmpty
isNotEmpty
iterator
last
length
runtimeType
single
Constructors
LinkedList
Operators
operator ==
Methods
add
addAll
addFirst
any
clear
contains
elementAt
every
expand
firstWhere
fold
forEach
join
lastWhere
map
noSuchMethod
reduce
remove
singleWhere
skip
skipWhile
take
takeWhile
toList
toSet
toString
where
Add
entry
to the end of the linked list.
Source
void add(E entry) { _insertAfter(_previous, entry); }