Create a contact based on email.
email
Future<int> createContact({required String email}) async { return _repository.createContact(email: email); }