class OnBoardingModel { final String title; final String description; final String image; final double imageWidth; final double imageHeight; OnBoardingModel({ required this.title, required this.description, required this.image, required this.imageWidth, required this.imageHeight, }); }