onInteractionGoalCompleted static method

void onInteractionGoalCompleted(
  1. InteractionReceipt receipt
)

Called when an interaction goal is completed.

Implementation

static void onInteractionGoalCompleted(InteractionReceipt receipt) {
  messagesListener.forEach((key, value) {
    value.onInteractionGoalCompleted(receipt);
  });
}