bindBlob function

int bindBlob(
  1. Statement stmt,
  2. Uint8List? value,
  3. int index
)

Bind a Statement stmt with a binary list value at the given index.

A void using huge blob data

Implementation

int bindBlob(Statement stmt, Uint8List? value, int index) {
  if (value == null) return bindNull(stmt, index);
  return Driver.binder.bind_blob(stmt._stmt!, index, value);
}