FunctionGraphic constructor

FunctionGraphic({
  1. required Size size,
  2. required Color? colorAxes,
  3. required List<Function> functions,
  4. required List<Function> functionsXt,
  5. required List<Function> functionsYt,
  6. int? nbGradX,
  7. int? nbGradY,
  8. double? minX,
  9. double? maxX,
  10. double? minY,
  11. double? maxY,
  12. double? minT,
  13. double? maxT,
  14. List<Color>? colors,
  15. List<Color>? colorsParam,
  16. double? strokeLine,
})

Implementation

FunctionGraphic({
  required this.size,
  required this.colorAxes,
  required this.functions,
  required this.functionsXt,
  required this.functionsYt,
  this.nbGradX,
  this.nbGradY,
  this.minX,
  this.maxX,
  this.minY,
  this.maxY,
  this.minT,
  this.maxT,
  this.colors,
  this.colorsParam,
  this.strokeLine,
});