unAuthorize method

  1. @override
Future<bool> unAuthorize()
override

Clears stored tokens and removes the Authorization header.

Call this when the user logs out to end their session. Returns true if tokens were cleared successfully.

Implementation

@override
Future<bool> unAuthorize() async {
  return await authHandler.unAuthorize();
}