fetchContacts method

void fetchContacts()

Implementation

void fetchContacts() {
  ContactRepo.getContactList().then((value) {
    Alog.i(
        tag: 'ContactKit',
        moduleName: 'ContactViewModel',
        content: 'fetchContacts size:${value.length}');
    contacts.clear();
    contacts.addAll(value);
    notifyListeners();
  });
}