WeatherChartHeader constructor

const WeatherChartHeader({
  1. required String title,
  2. required DateTime startDate,
  3. required DateTime endDate,
  4. Key? key,
})

Implementation

const WeatherChartHeader({
  required this.title,
  required this.startDate,
  required this.endDate,
  super.key,
});