clearMetadataCache method

Future<bool> clearMetadataCache()

Clears metadata cache entries in the worker.

Implementation

Future<bool> clearMetadataCache() async {
  final r = await _sendRequest<BoolResponse>(
    MetadataCacheClearRequest(_nextRequestId()),
  );
  return r.value;
}