RowOverflowCountComputationWidget constructor

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

Implementation

const RowOverflowCountComputationWidget({
  Key? key,
  required this.width,
  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);