IntroModel constructor

IntroModel({
  1. required String title,
  2. required String description,
  3. required String imagePath,
  4. required Color titleColor,
  5. required Color descriptionColor,
})

Implementation

IntroModel({
  required this.title,
  required this.description,
  required this.imagePath,
  required this.titleColor,
  required this.descriptionColor,
});