Delete a contact based on email.
email
Future<void> deleteContact({required String email}) async { return _repository.deleteContact(email: email); }