Screen1 constructor

Screen1({
  1. required Caption heading,
  2. required Caption caption,
  3. required Task taskHeading,
  4. required Task taskCaption,
  5. required String taskCardColor,
  6. required String taskIconId,
  7. required String progressBarColor1,
  8. required String progressBarColor2,
  9. required String bgColor,
  10. required String bannerImageId,
  11. required String bannerImageUrl,
  12. required String taskIconUrl,
})

Implementation

Screen1({
  required this.heading,
  required this.caption,
  required this.taskHeading,
  required this.taskCaption,
  required this.taskCardColor,
  required this.taskIconId,
  required this.progressBarColor1,
  required this.progressBarColor2,
  required this.bgColor,
  required this.bannerImageId,
  required this.bannerImageUrl,
  required this.taskIconUrl,
});