Uint64Queue.fromList constructor Null safety
Creates a Uint64Queue with the same length and contents as elements
.
Implementation
factory Uint64Queue.fromList(List<int> elements) =>
Uint64Queue(elements.length)..addAll(elements);
Creates a Uint64Queue with the same length and contents as elements
.
factory Uint64Queue.fromList(List<int> elements) =>
Uint64Queue(elements.length)..addAll(elements);