deleteContact static method

Future<void> deleteContact(
  1. Contact contact
)

Deletes one contact from the database.

Implementation

static Future<void> deleteContact(Contact contact) async =>
    deleteContacts([contact]);