CardNotification constructor

const CardNotification({
  1. Key? key,
  2. required String title,
  3. required String time,
  4. IconData? icon = BootstrapIcons.bell_fill,
  5. Color? textColor = FUIColors.white,
  6. String? description,
  7. Color? iconColor,
  8. Color? backgroundColor,
})

Implementation

const CardNotification({
		super.key,
		required this.title,
		required this.time,
		this.icon = BootstrapIcons.bell_fill,
		this.textColor = FUIColors.white,
		this.description,
		this.iconColor,
		this.backgroundColor
	});