KLinePriceLine constructor

const KLinePriceLine({
  1. required double price,
  2. String? label,
  3. Color? color,
  4. double? strokeWidth,
})

Creates a horizontal price line annotation.

Implementation

const KLinePriceLine({
  required this.price,
  this.label,
  this.color,
  this.strokeWidth,
});