clearCaches method

void clearCaches()

Implementation

void clearCaches() {
  _master?.clearCaches();
  for (var waypath in _inner) {
    waypath.clearCaches();
  }
  for (var waypath in _closedOuters) {
    waypath.clearCaches();
  }
  for (var waypath in _openOuters) {
    waypath.clearCaches();
  }
}