signOut method

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

Use this to sign out the user, this will also remove the token stored in the local storage.

Implementation

@override
Future<void> signOut() async {
  await params.deleteAccessToken();
  __credentials = null;
}