clearStatementCache method

Future<bool> clearStatementCache()

Clears the prepared statement cache in the worker.

Implementation

Future<bool> clearStatementCache() async {
  final r = await _sendRequest<ClearCacheResponse>(
    ClearCacheRequest(_nextRequestId()),
  );
  return r.error == null;
}