TrendTicker constructor

const TrendTicker({
  1. Key? key,
  2. required BuildContext context,
  3. required List<ChartData> data,
  4. required double value,
  5. required String timeWindowLabel,
  6. required String unit,
  7. required String type,
  8. required dynamic info,
  9. required Color color,
})

Implementation

const TrendTicker({
  super.key,
  required this.context,
  required this.data,
  required this.value,
  required this.timeWindowLabel,
  required this.unit,
  required this.type,
  required this.info,
  required this.color,
});