AntdPageIndicator constructor

const AntdPageIndicator({
  1. Key? key,
  2. AntdPageIndicatorStyle? style,
  3. AntdStyleBuilder<AntdPageIndicatorStyle, AntdPageIndicator>? styleBuilder,
  4. AntdColor color = AntdColor.primary,
  5. int total = 0,
  6. int current = 0,
  7. bool vertical = false,
})

Implementation

const AntdPageIndicator({
  super.key,
  super.style,
  super.styleBuilder,
  this.color = AntdColor.primary,
  this.total = 0,
  this.current = 0,
  this.vertical = false,
});