ChartArea constructor

const ChartArea({
  1. Key? key,
  2. required BoundingBox bounds,
  3. required List<Point> points,
  4. required Color positiveColor,
  5. required Color negativeColor,
})

Implementation

const ChartArea({
  super.key,
  required this.bounds,
  required this.points,
  required this.positiveColor,
  required this.negativeColor,
});