getAllContactDetails method
retrieves all contact details for the given currentAtSign
Implementation
void getAllContactDetails(String currentAtSign) async {
atContactImpl = await AtContactsImpl.getInstance(currentAtSign);
contactList = await atContactImpl!.listContacts();
}