deleteContact static method

Future deleteContact(
  1. Contact contact
)

Deletes the contact if it has a valid identifier

Implementation

static Future deleteContact(Contact contact) =>
    _channel.invokeMethod('deleteContact', Contact._toMap(contact));