WeatherChartRangeIndicator constructor

const WeatherChartRangeIndicator({
  1. required double dataMin,
  2. required double dataMax,
  3. DateTime? minDate,
  4. DateTime? maxDate,
  5. required String unit,
  6. required IconData icon,
  7. String? dataType,
  8. Key? key,
})

Implementation

const WeatherChartRangeIndicator({
  required this.dataMin,
  required this.dataMax,
  this.minDate,
  this.maxDate,
  required this.unit,
  required this.icon,
  this.dataType,
  super.key,
});