Introduction constructor

Introduction({
  1. String? imageUrl,
  2. String? lottieUrl,
  3. required String title,
  4. required String subTitle,
  5. TextStyle titleTextStyle = const TextStyle(fontSize: 30),
  6. TextStyle subTitleTextStyle = const TextStyle(fontSize: 20),
  7. double? imageWidth = 360,
  8. double? imageHeight = 360,
  9. double? lottieHeight = 360,
  10. 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,
});