LegendItem constructor

const LegendItem({
  1. Key? key,
  2. required Segment segment,
  3. LegendItemStyle? style,
})

Create a legend item from a Segment.

Implementation

const LegendItem({
  super.key,
  required this.segment,
  this.style,
});