BuildIndicatorChip constructor

const BuildIndicatorChip({
  1. Key? key,
  2. required Widget label,
  3. Color? labelColor,
  4. TextStyle? textStyle,
  5. Color? backgroundColor,
  6. Color? dotColor,
})

Implementation

const BuildIndicatorChip({
  super.key,
  required this.label,
  this.labelColor,
  this.textStyle,
  this.backgroundColor,
  this.dotColor,
});