tagChanged method

  1. @override
void tagChanged(
  1. String tag, {
  2. String? value,
})
override

Invoked by the MBurger plugins manager when a tag changes in the MBAudience plugin. @param tag The tag. @param value: The value of the tag, null if the tag has been deleted.

Implementation

@override
void tagChanged(
  String tag, {
  String? value,
}) {
  MBAutomationMessagesManager.tagChanged(
    tag,
    value,
  );
}