value_blob method
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));
}