PromotionalWidget constructor

const PromotionalWidget({
  1. Key? key,
  2. required String title,
  3. String? description,
  4. String? imageUrl,
  5. String? badgeText,
  6. String? actionUrl,
  7. void onAction(
    1. String url
    )?,
})

Implementation

const PromotionalWidget({
  super.key,
  required this.title,
  this.description,
  this.imageUrl,
  this.badgeText,
  this.actionUrl,
  this.onAction,
});