clearSync method

void clearSync()

Remove all data in this instance and reset the auto increment values.

Implementation

void clearSync() {
  for (final col in _collections.values) {
    col.clearSync();
  }
}