static TCountry? findByCode(String code) { try { return all.firstWhere((c) => c.code.toUpperCase() == code.toUpperCase()); } catch (_) { return null; } }