WriteBuffer constructor
Creates an interface for incrementally building a ByteData instance.
Implementation
WriteBuffer() {
  _buffer = Uint8Buffer();
  _eightBytes = ByteData(8);
  _eightBytesAsList = _eightBytes.buffer.asUint8List();
}Creates an interface for incrementally building a ByteData instance.
WriteBuffer() {
  _buffer = Uint8Buffer();
  _eightBytes = ByteData(8);
  _eightBytesAsList = _eightBytes.buffer.asUint8List();
}