updateContactProperties method
Update a contact properties
based on its email
.
Note that the properties
will only be handled by Sendinblue if they are already defined in your project.
Implementation
Future<void> updateContactProperties({required String email, required Map<String, dynamic> properties}) async {
return _repository.updateContactProperties(email: email, properties: properties);
}