Current File : /home/tradevaly/www/fresh/lib/data/model/response/onboarding_model.dart
class OnBoardingModel{
String _imageUrl;
String _title;
String _description;
get imageUrl => _imageUrl;
get title => _title;
get description => _description;
OnBoardingModel(this._imageUrl, this._title, this._description);
}