executePreparedRaw method
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,
int timeoutOverrideMs,
int fetchSize, {
int? maxBufferBytes,
}) =>
_native.execute(
stmtId,
serializedParams,
timeoutOverrideMs,
fetchSize,
maxBufferBytes,
);