getContacts method

Future getContacts()

Return to list of contacts

Implementation

Future getContacts() async {
  return await wpClient.evaluateJs(
    '''WPP.contact.list();''',
    methodName: "getContacts",
    forceJsonParseResult: true,
  );
}