clearStorage method

  1. @override
Future clearStorage()
override

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
  }
}