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