clearAll method
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);
}
Clear all theme storage data including migration flag. Useful for testing and development.
Future<void> clearAll() async {
await clear();
await _secureStorage.delete(key: _migrationCompleteKey);
}