LineCanvasModel constructor

const LineCanvasModel({
  1. required List<Path> paths,
  2. required Color pathColor,
  3. required double pathWidth,
  4. required List<Path>? shadowPaths,
  5. required List<Color>? shaderColors,
  6. required List<Point<num>>? points,
  7. required Color pointColor,
  8. required double pointRadius,
  9. required double pointInnerRadius,
  10. required Color pointInnerColor,
  11. bool showPointText = false,
})

Implementation

const LineCanvasModel({
  required this.paths,
  required this.pathColor,
  required this.pathWidth,
  required this.shadowPaths,
  required this.shaderColors,
  required this.points,
  required this.pointColor,
  required this.pointRadius,
  required this.pointInnerRadius,
  required this.pointInnerColor,
  this.showPointText = false,
});