createContact method

Future<Contact> createContact(
  1. Contact contact
)

Creates a new contact.

contact - The contact data to create.

Implementation

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