UsageGraph constructor

const UsageGraph({
  1. Key? key,
  2. required List<UsageGraphPoint> points,
  3. required String title,
  4. required String formatValue(
    1. double value
    ),
  5. double? summaryValue,
  6. List<UsageGraphPoint> highlightedPoints = const [],
})

Implementation

const UsageGraph({
  super.key,
  required this.points,
  required this.title,
  required this.formatValue,
  this.summaryValue,
  this.highlightedPoints = const [],
});