Future<List<Contact>> removeEmptyNames(List<Contact> contacts) async { return contacts.where((c) => (c.displayName.trim().isNotEmpty)).toList(); }