removeContactFromEmailsBlackList method
Remove a contact from the emails black list based on email
.
Implementation
Future<void> removeContactFromEmailsBlackList({required String email}) async {
return _repository.removeContactFromEmailsBlackList(email: email);
}