addAll method

dynamic addAll (
  1. Iterable<int> bytes
)

Add bytes to this packet

Implementation

addAll(Iterable<int> bytes){
  assert(_isStream != null && !_isStream);
  _bytes.addAll(bytes);
}