ChartLine constructor

const ChartLine({
  1. Key? key,
  2. String? label,
  3. required double? value,
  4. required Color? backgroundColor,
  5. TextStyle? textStyleLine,
  6. Color? backgroundColorLine,
})

Implementation

const ChartLine({
  Key? key,
  this.label,
  required this.value,
  required this.backgroundColor,
  this.textStyleLine,
  this.backgroundColorLine,
}) : super(key: key);