orderContacts method
Implementation
Future<List<Contact>> orderContacts(List<Contact> contacts) async {
return List<Contact>.from(contacts)..sort(
(a, b) => (a.displayName).toLowerCase().compareTo(
(b.displayName).toLowerCase(),
),
);
}