lowFinish method

Uint8List lowFinish()

This method low level method can be used to return a raw piece of the buffer after using the the put* methods.

Most clients should prefer calling finish.

Implementation

Uint8List lowFinish() {
  return _buf.buffer.asUint8List(_buf.lengthInBytes - size);
}