clear method

Future<void> clear()

⚠️ Deletes ALL keys in this storage instance. On the singleton, this includes all app data. On a scoped instance, only that scope's data is cleared.

Implementation

Future<void> clear() async {
  await _storage.deleteAll();
}