PrefetchBundleCampaign constructor

PrefetchBundleCampaign({
  1. required String id,
  2. required String type,
  3. String? subType,
  4. required String title,
  5. required String body,
  6. String? backgroundColor,
  7. String? textColor,
  8. String? actionUrl,
  9. required int priority,
  10. Map<String, dynamic>? interactiveConfig,
  11. String? assignedVariantId,
  12. required bool inboxEnabled,
})

Implementation

PrefetchBundleCampaign({
  required this.id,
  required this.type,
  this.subType,
  required this.title,
  required this.body,
  this.backgroundColor,
  this.textColor,
  this.actionUrl,
  required this.priority,
  this.interactiveConfig,
  this.assignedVariantId,
  required this.inboxEnabled,
});