UsageGraph constructor
const
UsageGraph({
- Key? key,
- required List<
UsageGraphPoint> points, - required String title,
- required String formatValue(
- double value
- double? summaryValue,
- List<
UsageGraphPoint> highlightedPoints = const [],
Implementation
const UsageGraph({
super.key,
required this.points,
required this.title,
required this.formatValue,
this.summaryValue,
this.highlightedPoints = const [],
});