deleteContact method

Future<void> deleteContact(
  1. String id
)

Deletes a contact by ID.

id - The ID of the contact to delete.

Implementation

Future<void> deleteContact(String id) {
  throw UnimplementedError('deleteContact() has not been implemented.');
}