deleteContacts method

Future deleteContacts (
  1. List<String> contactIds
)

Deletes contacts with given IDs (given by contact.id)

Implementation

static Future deleteContacts(List<String> contactIds) async =>
    await _channel.invokeMethod('delete', contactIds);