SequentialFillIndicator constructor

SequentialFillIndicator({
  1. double itemSpacing = 20,
  2. double indicatorRadius = 6,
  3. EdgeInsets? padding,
  4. AlignmentGeometry alignment = Alignment.bottomCenter,
  5. Color currentIndicatorColor = const Color(0xFF000000),
  6. Color indicatorBackgroundColor = const Color(0x64000000),
  7. bool enableAnimation = false,
  8. double indicatorBorderWidth = 1,
  9. Color? indicatorBorderColor,
})

Implementation

SequentialFillIndicator({
  this.itemSpacing = 20,
  this.indicatorRadius = 6,
  this.padding,
  this.alignment = Alignment.bottomCenter,
  this.currentIndicatorColor = const Color(0xFF000000),
  this.indicatorBackgroundColor = const Color(0x64000000),
  this.enableAnimation = false,
  this.indicatorBorderWidth = 1,
  this.indicatorBorderColor,
});