OnBoardingModel constructor

OnBoardingModel({
  1. required String image,
  2. required String title,
  3. required String subTitle,
  4. required String counterText,
  5. required Color bgColorLight,
  6. required Color bgColorDark,
})

Implementation

OnBoardingModel({
  required this.image,
  required this.title,
  required this.subTitle,
  required this.counterText,
  required this.bgColorLight,
  required this.bgColorDark,
});