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