OnBoardScreen constructor

OnBoardScreen(
  1. {required String title,
  2. required String description,
  3. required String image,
  4. Color? color}
)

Implementation

OnBoardScreen({
  required this.title,
  required this.description,
  required this.image,
  this.color,
});