16 lines
322 B
Dart
16 lines
322 B
Dart
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,
|
|
});
|
|
}
|