MarkLine constructor

MarkLine({
  1. SymbolStyle? startSymbol,
  2. SymbolStyle? endSymbol,
  3. bool touch = false,
  4. StyleFun<int, LabelStyle>? labelStyle,
  5. LineStyle lineStyle = const LineStyle(),
  6. int precision = 2,
  7. MarkType startMarkType = MarkType.average,
  8. MarkType? endMarkType,
})

Implementation

MarkLine({
  this.startSymbol,
  this.endSymbol,
  this.touch = false,
  this.labelStyle,
  this.lineStyle = const LineStyle(),
  this.precision = 2,
  this.startMarkType = MarkType.average,
  this.endMarkType,
});