BannerStyle constructor

BannerStyle({
  1. bool? isImage,
  2. String? bannerImagePath,
  3. double? bannerImageWidth,
  4. double? bannerImageHeight,
  5. String? bannerSvgPath,
  6. double? bannerSvgWidth,
  7. double? bannerSvgHeight,
})

Implementation

BannerStyle({
  this.isImage,
  this.bannerImagePath,
  this.bannerImageWidth,
  this.bannerImageHeight,
  this.bannerSvgPath,
  this.bannerSvgWidth,
  this.bannerSvgHeight,
});