updateContact method

Future<Contact> updateContact(
  1. Contact contact
)

Updates an existing contact.

contact - The contact data with updates.

Implementation

Future<Contact> updateContact(Contact contact) {
  throw UnimplementedError('updateContact() has not been implemented.');
}