clearTokens static method

Future<void> clearTokens()

Implementation

static Future<void> clearTokens() async {
  _memToken = null;
  await ApStorage.remove(_kToken);
  await ApStorage.remove(_kRefresh);
  AutoPilotLogger.token('Tokens cleared 🗑');
}