MokCarouselBanner constructor

MokCarouselBanner({
  1. Key? key,
  2. double? height = 250.0,
  3. EdgeInsets? padding = const EdgeInsets.all(0),
  4. EdgeInsets? margin = const EdgeInsets.all(0),
  5. BoxFit? scaleType = BoxFit.fill,
})

Implementation

MokCarouselBanner({
  super.key,
  this.height = 250.0,
  this.padding = const EdgeInsets.all(0),
  this.margin = const EdgeInsets.all(0),
  this.scaleType = BoxFit.fill,
});