BannerCard constructor

const BannerCard({
  1. Key? key,
  2. String? title,
  3. required String text,
  4. String? emoji,
  5. String? actionText,
  6. String? actionUrl,
  7. String style = 'default',
  8. void onAction(
    1. String url
    )?,
})

Implementation

const BannerCard({
  super.key,
  this.title,
  required this.text,
  this.emoji,
  this.actionText,
  this.actionUrl,
  this.style = 'default',
  this.onAction,
});