getContact method

Future<Contact> getContact({
  1. required String email,
})

Get a contact based on email.

Implementation

Future<Contact> getContact({required String email}) async {
  return _repository.getContact(email: email);
}