clear method

Future<void> clear()

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

Implementation

Future<void> clear() async {
  for (var col in _collections.values) {
    await col.clear();
  }
}