LinePointModel constructor

LinePointModel({
  1. required double x,
  2. double? y,
  3. String text = '',
  4. TextStyle textStyle = defaultTextStyle,
  5. double pointToTextSpace = 0,
  6. CellPointSet cellPointSet = CellPointSet.normal,
})

Implementation

LinePointModel(
    {required this.x,
    this.y,
    this.text = '',
    this.textStyle = defaultTextStyle,
    this.pointToTextSpace = 0,
    this.cellPointSet = CellPointSet.normal});