JeaIconTitleText constructor

const JeaIconTitleText({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. required IconData icon,
  5. Color? iconColor,
  6. Color? subtitleColor,
  7. Color? titleColor,
  8. required bool clickable,
  9. TextStyle? textStyleSubtitle,
  10. TextStyle? textStyleTitle,
  11. void event()?,
})

Implementation

const JeaIconTitleText({
  super.key,
  required this.title,
  required this.subtitle,
  required this.icon,
  this.iconColor,
  this.subtitleColor,
  this.titleColor,
  required this.clickable,
  this.textStyleSubtitle,
  this.textStyleTitle,
  this.event,
});