Creates a Buffer from a list of bytes.
bytes
factory Buffer.fromList(final Iterable<int> bytes) { return Buffer(bytes.length).._data.setAll(0, bytes); }