clear static method

Future<void> clear()

Clears all tokens from storage.

Implementation

static Future<void> clear() async {
  await AppStorage.remove(_accessTokenKey);
  await AppStorage.remove(_refreshTokenKey);
}