ExtraLine constructor

ExtraLine({
  1. required int startIndex,
  2. required double startPrice,
  3. required int endIndex,
  4. required double endPrice,
  5. Color color = Colors.blue,
})

Implementation

ExtraLine(
    {required this.startIndex,
    required this.startPrice,
    required this.endIndex,
    required this.endPrice,
    this.color = Colors.blue});