bindJSBigInt method

void bindJSBigInt(
  1. int index,
  2. JSBigInt value
)

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

The value must fit in a signed 64-bit integer.

Implementation

void bindJSBigInt(int index, JSBigInt value) {
  final impl = rawStatement as WasmStatement;
  handleBindRc(impl.sqlite3_bind_jsBigInt(index, value));
}