clearCache method

void clearCache()

Clears the cache of the renovation controllers. Involved controllers:

Implementation

void clearCache() {
  for (final renovationController in <RenovationController?>[
    model,
    meta,
    auth,
    perm,
    frappe
  ]) {
    renovationController?.clearCache();
  }
}