KLinePriceZone constructor

const KLinePriceZone({
  1. required double fromPrice,
  2. required double toPrice,
  3. String? label,
  4. Color? color,
  5. double? opacity,
})

Creates a price zone annotation.

Implementation

const KLinePriceZone({
  required this.fromPrice,
  required this.toPrice,
  this.label,
  this.color,
  this.opacity,
});