column_blob method
Implementation
typed.Uint8List? column_blob(PtrStmt arg1, int iCol) {
var result = _h_sqlite3_column_blob(arg1, iCol);
return result == ffi.nullptr
? null
: result.cast<ffi.Uint8>().toUint8List(length: _h_sqlite3_column_bytes(arg1, iCol));
}