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