clearAll method

Future<void> clearAll()

Clear all theme storage data including migration flag. Useful for testing and development.

Implementation

Future<void> clearAll() async {
  await clear();
  await _secureStorage.delete(key: _migrationCompleteKey);
}