clear method

Future<void> clear()

Clears all local data. Does not delete anything from any remote sources.

Implementation

Future<void> clear() async {
  await ready;
  await sourceList.clear();
}