columnJSBigInt method

JSBigInt columnJSBigInt(
  1. int index
)

Calls sqlite3_column_int64 with the given index.

Note that this performs no bounds check against columnCount in Dart.

Implementation

JSBigInt columnJSBigInt(int index) {
  final impl = rawStatement as WasmStatement;
  return impl.sqlite3_column_bigint(index);
}