KLineVerticalLine constructor

const KLineVerticalLine({
  1. required int time,
  2. String? label,
  3. Color? color,
  4. double? strokeWidth,
})

Creates a vertical event line annotation.

Implementation

const KLineVerticalLine({
  required this.time,
  this.label,
  this.color,
  this.strokeWidth,
});