ChartBean constructor

ChartBean({
  1. required String x,
  2. required double y,
  3. int? millisSeconds,
  4. Color? color,
})

Implementation

ChartBean({
  required this.x,
  required this.y,
  this.millisSeconds,
  this.color,
});