setTags method Null safety

Future<void> setTags(
  1. {required Map<String, String> tags}
)

Sets n tags in the MBAudienceTagsManager instance. @param tags a map of tags and values.

Implementation

Future<void> setTags({required Map<String, String> tags}) async {
  return _tagsManager.setTags(tags: tags);
}