delete method
override
Removes authentication tokens from secure storage.
Called by Fresh Dio when a token refresh fails (refresh token expired), when the user logs out, or when authentication state must be cleared. After deletion the user must re-authenticate to access protected endpoints.
Implementation
@override
Future<void> delete() async {
await SecureStorage.instance.deleteAuthTokenModelData();
}