BarGraph constructor

BarGraph({
  1. Key? key,
  2. required List<GraphModel> graphData,
  3. required double largestValue,
  4. required Color backgroundColor,
  5. required Color textColor,
  6. required double graphHeight,
})

Implementation

BarGraph(
    {super.key,
    required this.graphData,
    required this.largestValue,
    required this.backgroundColor,
    required this.textColor,
    required this.graphHeight});