HourlyWeatherChart constructor

const HourlyWeatherChart({
  1. required HourlyWeatherData data,
  2. String dataType = 'temperature',
  3. bool sortAscending = false,
  4. double? latitude,
  5. double? longitude,
  6. String? address,
  7. String? dataSource,
  8. Key? key,
})

Implementation

const HourlyWeatherChart({
  required this.data,
  this.dataType = 'temperature',
  this.sortAscending = false,
  this.latitude,
  this.longitude,
  this.address,
  this.dataSource,
  super.key,
});