BasicIndicatorAttributes constructor

BasicIndicatorAttributes({
  1. Color unselectedBackgroundColor = const Color(0x33FFFFFF),
  2. Color selectedBackgroundColor = Colors.white,
  3. Color unselectedBorderColor = Colors.transparent,
  4. Color selectedBorderColor = Colors.white,
  5. double borderSize = 1,
  6. double size = 8,
  7. Duration animationDuration = Durations.short4,
})

Implementation

BasicIndicatorAttributes({
  this.unselectedBackgroundColor = const Color(0x33FFFFFF),
  this.selectedBackgroundColor = Colors.white,
  this.unselectedBorderColor = Colors.transparent,
  this.selectedBorderColor = Colors.white,
  this.borderSize = 1,
  this.size = 8,
  this.animationDuration = Durations.short4,
});