BannerContent constructor

BannerContent({
  1. String? title,
  2. List<BannerImage>? image,
  3. List<BannerVideo>? video,
  4. String? description,
})

Implementation

BannerContent({
  this.title,
  this.image,
  this.video,
  this.description,
});