IndicatorConfig constructor

const IndicatorConfig({
  1. bool? isShowIndicator,
  2. Color? colorIndicator,
  3. Color? colorActiveIndicator,
  4. double? sizeIndicator,
  5. double? spaceBetweenIndicator,
  6. TypeIndicatorAnimation? typeIndicatorAnimation,
  7. Widget? indicatorWidget,
  8. Widget? activeIndicatorWidget,
})

Implementation

const IndicatorConfig({
  this.isShowIndicator,
  this.colorIndicator,
  this.colorActiveIndicator,
  this.sizeIndicator,
  this.spaceBetweenIndicator,
  this.typeIndicatorAnimation,
  this.indicatorWidget,
  this.activeIndicatorWidget,
})  : assert(sizeIndicator == null || sizeIndicator >= 0),
      assert(spaceBetweenIndicator == null || spaceBetweenIndicator >= 0);