IntroductionSliderItem constructor
const
IntroductionSliderItem({})
Implementation
const IntroductionSliderItem({
required this.title,
required this.description,
required this.image,
this.backgroundColor,
this.backgroundImage,
}) : assert(title != null, "It is mandatory to provide a title."),
assert(
description != null, "It is mandatory to provide a description."),
assert(
image != null, "It is mandatory to provide a image or a widget.");