valueBytes method

Uint8List valueBytes()

Return just the value bytes.

This returns a view into the byte buffer

Implementation

Uint8List valueBytes() {
  return Uint8List.view(encodedBytes.buffer,
      _valueStartPosition + encodedBytes.offsetInBytes, _valueByteLength);
}