logout method

  1. @override
Future<void> logout()
override

Logs the current user out of the application.

Implementation

@override
Future<void> logout() async {
  authToken = null;
}