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