NotificationConfig constructor

NotificationConfig({
  1. required String title,
  2. required String subtitle,
  3. String? imageUrl,
  4. Color? backgroundColor,
  5. String? backgroundImageUrl,
  6. double? titleFontSize,
  7. double? subtitleFontSize,
  8. Color? titleColor,
  9. Color? subtitleColor,
  10. List<NotificationButton>? buttons,
})

Implementation

NotificationConfig({
  required this.title,
  required this.subtitle,
  this.imageUrl,
  this.backgroundColor,
  this.backgroundImageUrl,
  this.titleFontSize,
  this.subtitleFontSize,
  this.titleColor,
  this.subtitleColor,
  this.buttons,
});