Plot constructor

Plot({double height: 200.0, @required List<Point> data, @required PlotStyle style, @required Offset gridSize, @required EdgeInsets padding, String xTitle, String yTitle })

Implementation

Plot({
  this.height = 200.0,
  @required this.data,
  @required this.style,
  @required this.gridSize,
  @required this.padding,
  this.xTitle,
  this.yTitle,
});