inAppMessageShowed static method

Future<void> inAppMessageShowed(
  1. MBMessage message
)

Called when an in-app message is showed, it sends the MBMessageMetricsMetric.view metric.

Implementation

static Future<void> inAppMessageShowed(MBMessage message) async {
  return _createMessageMetric(
    MBMessageMetricsMetric.view,
    message.id,
  );
}