executePreparedRaw method

Uint8List? executePreparedRaw(
  1. int stmtId,
  2. Uint8List? serializedParams
)

Executes a prepared statement with params already serialized (bytes).

Used by the worker isolate. serializedParams is the output of serializeParams or null/empty for no params.

Implementation

Uint8List? executePreparedRaw(int stmtId, Uint8List? serializedParams) =>
    _native.execute(stmtId, serializedParams);