closeStatement method
Closes the prepared statement stmtId in the worker.
Implementation
Future<bool> closeStatement(int stmtId) async {
final r = await _sendRequest<BoolResponse>(
CloseStatementRequest(_nextRequestId(), stmtId),
);
return r.value;
}