Checks if address is duplicate.
bool isDuplicate(List<String>? existing) { if (existing == null || existing.isEmpty) return false; return existing.any((e) => e.toLowerCase().trim() == toLowerCase()); }