addContact method

Future<bool?> addContact(
  1. String number,
  2. String name
)

This method is used to add the contact.

Implementation

Future<bool?> addContact(String number, String name) async {
  throw UnimplementedError('has not been implemented.');
}