KLineMarker constructor

const KLineMarker({
  1. required int time,
  2. required double price,
  3. KLineMarkerType type = KLineMarkerType.custom,
  4. String? label,
  5. Color? color,
  6. double? radius,
})

Creates a candle marker annotation.

Implementation

const KLineMarker({
  required this.time,
  required this.price,
  this.type = KLineMarkerType.custom,
  this.label,
  this.color,
  this.radius,
});