clearCache method

void clearCache()

Clear cache

Implementation

void clearCache() {
  try {
    final lib = PlatformLoader.loadCommons();
    final clearFn = lib.lookupFunction<Void Function(), void Function()>(
        'rac_model_assignment_clear_cache');
    clearFn();
  } catch (e) {
    _logger.debug('rac_model_assignment_clear_cache error: $e');
  }
}