clearAll method

void clearAll()

Clear all cached rows while keeping registrations intact.

Implementation

void clearAll() {
  for (final table in _tables.values) {
    table.clear();
  }
}