updateContact method

Future<bool> updateContact({
  1. required String contactId,
  2. String? name,
  3. String? phoneNumber,
  4. String? email,
})

Implementation

Future<bool> updateContact({
  required String contactId,
  String? name,
  String? phoneNumber,
  String? email,
}) {
  throw UnimplementedError('updateContact() has not been implemented.');
}