OutputBuffer constructor

OutputBuffer({
  1. int? size = _blockSize,
  2. bool bigEndian = false,
})

Create a byte buffer for writing.

Implementation

OutputBuffer({int? size = _blockSize, this.bigEndian = false})
    : _buffer = Uint8List(size ?? _blockSize),
      length = 0;