add method

dynamic add (
  1. int byte
)

Implementation

add(int byte){
  assert(_isStream != null && !_isStream);
  _bytes.add(byte);
}