getAllContacts method

Future<List<Contact>> getAllContacts()

Get all the contacts without any filter nor pagination.

Implementation

Future<List<Contact>> getAllContacts() async {
  return _repository.getAllContacts();
}