ChartLegendEntry constructor

const ChartLegendEntry({
  1. required String label,
  2. required UvStyle style,
  3. String glyph = '■',
  4. UvStyle labelStyle = const UvStyle(),
})

Creates a ChartLegendEntry with the given label and style.

Implementation

const ChartLegendEntry({
  required this.label,
  required this.style,
  this.glyph = '■',
  this.labelStyle = const UvStyle(),
});