ChartTextLabels constructor

const ChartTextLabels({
  1. Key? key,
  2. required List<TextLabel> labels,
  3. TextStyle? defaultStyle,
})

Creates a chart text labels widget.

Implementation

const ChartTextLabels({
  super.key,
  required this.labels,
  this.defaultStyle,
});