ImpactGuideContent constructor

ImpactGuideContent({
  1. required dynamic title,
  2. required dynamic description,
  3. Color? BackgroundColor,
  4. Color? TxtColor,
})

Implementation

ImpactGuideContent({
  required this.title,
  required this.description,
  this.BackgroundColor,
  this.TxtColor
});