Clear stored tokens.
@override Future<void> clearTokens() async { final file = File(filePath); if (await file.exists()) { await file.delete(); } }