InAppMessage constructor

const InAppMessage({
  1. required String messageId,
  2. String? deliveryId,
  3. String? elementId,
})

Creates an in-app message instance

Implementation

const InAppMessage({
  required this.messageId,
  this.deliveryId,
  this.elementId,
});