NiceWelcomeBanner constructor

const NiceWelcomeBanner({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. Widget? image,
  5. VoidCallback? onDismiss,
  6. VoidCallback? onAction,
  7. String? actionLabel,
  8. Color? backgroundColor,
  9. List<Color>? gradientColors,
  10. EdgeInsets? padding,
})

Implementation

const NiceWelcomeBanner({
  super.key,
  required this.title,
  this.subtitle,
  this.image,
  this.onDismiss,
  this.onAction,
  this.actionLabel,
  this.backgroundColor,
  this.gradientColors,
  this.padding,
});