BandingProperties constructor

BandingProperties({
  1. Color? firstBandColor,
  2. ColorStyle? firstBandColorStyle,
  3. Color? footerColor,
  4. ColorStyle? footerColorStyle,
  5. Color? headerColor,
  6. ColorStyle? headerColorStyle,
  7. Color? secondBandColor,
  8. ColorStyle? secondBandColorStyle,
})

Implementation

BandingProperties({
  this.firstBandColor,
  this.firstBandColorStyle,
  this.footerColor,
  this.footerColorStyle,
  this.headerColor,
  this.headerColorStyle,
  this.secondBandColor,
  this.secondBandColorStyle,
});