@override Future<void> clearCredentials() async { final file = File(credentialsFile); if (await file.exists()) { await file.delete(); } }