clearStorage method
Clears authentication and cache storage.
Implementation
@override
Future clearStorage() async {
await authHandler.clear(); // Clear authentication data
if (_options.cacheEnabled) {
await cacheHandler.clear(); // Clear cache if enabled
}
}