deleteContact method
- String contactId
////////////////////////////////////////////////
DELETING CONTACTS ///
////////////////////////////////////////////////
Deletes contact with given ID (given by contact.id
)
Implementation
/// Deletes contact with given ID (given by [contact.id])
static Future deleteContact(String contactId) async =>
await _channel.invokeMethod('delete', [contactId]);