column_blob method

Uint8List? column_blob(
  1. PtrStmt arg1,
  2. int iCol
)
inherited

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