blobValue property

Uint8List? blobValue

Returns Uint8List value or null otherwise.

Implementation

Uint8List? get blobValue {
  if (_valueType == ValueType.Blob) {
    return _buffer.buffer.asUint8List(_indirect, length);
  }
  return null;
}