Introduction constructor
Introduction({
- String? imageUrl,
- String? lottieUrl,
- required String title,
- required String subTitle,
- TextStyle titleTextStyle = const TextStyle(fontSize: 30),
- TextStyle subTitleTextStyle = const TextStyle(fontSize: 20),
- double? imageWidth = 360,
- double? imageHeight = 360,
- double? lottieHeight = 360,
- double? lottieWidth = 360,
Implementation
Introduction({
this.imageUrl,
this.lottieUrl,
required this.title,
required this.subTitle,
this.titleTextStyle = const TextStyle(fontSize: 30),
this.subTitleTextStyle = const TextStyle(fontSize: 20),
this.imageWidth = 360,
this.imageHeight = 360,
this.lottieHeight =360,
this.lottieWidth = 360,
});