value_blob method

Uint8List? value_blob(
  1. PtrValue arg1
)
inherited

Implementation

typed.Uint8List? value_blob(PtrValue arg1) {
  var result = _h_sqlite3_value_blob(arg1);
  return result == ffi.nullptr
      ? null
      : result.cast<ffi.Uint8>().toUint8List(length: _h_sqlite3_value_bytes(arg1));
}