NiceChartAnnotation constructor

const NiceChartAnnotation({
  1. required double value,
  2. String? label,
  3. Color? color,
  4. bool dashed = false,
})

Implementation

const NiceChartAnnotation({
  required this.value,
  this.label,
  this.color,
  this.dashed = false,
});