RowOverflowCount constructor

const RowOverflowCount({
  1. Key? key,
  2. required List<String> labels,
  3. required TextStyle labelTextStyle,
  4. EdgeInsets? labelPadding,
  5. EdgeInsets? labelMargin,
  6. BoxDecoration? labelDecoration,
  7. required TextStyle overflowTextStyle,
  8. EdgeInsets? overflowPadding,
  9. EdgeInsets? overflowMargin,
  10. BoxDecoration? overflowDecoration,
  11. String overflowTextBuilder(
    1. int count
    )?,
  12. void labelClickListener(
    1. String lable
    )?,
  13. void overflowClickListener()?,
})

Implementation

const RowOverflowCount({
  Key? key,
  required this.labels,
  required this.labelTextStyle,
  this.labelPadding,
  this.labelMargin,
  this.labelDecoration,
  required this.overflowTextStyle,
  this.overflowPadding,
  this.overflowMargin,
  this.overflowDecoration,
  this.overflowTextBuilder,
  this.labelClickListener,
  this.overflowClickListener,
}) : super(key: key);