bindBlob method

void bindBlob(
  1. int index,
  2. List<int> value
)

Calls sqlite3_bind_blob64 with the 1-based index and the target value.

Implementation

void bindBlob(int index, List<int> value) {
  handleBindRc(rawStatement.sqlite3_bind_blob64(index, value));
}