clear method

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

Deletes all token information.

Implementation

@override
Future<void> clear() async {
  SharedPreferences preferences = await SharedPreferences.getInstance();
  await preferences.remove(tokenKey);
}