CurrentWeatherData constructor
CurrentWeatherData(
- int? _lastUpdatedEpoch,
- String? _lastUpdated,
- double? _tempC,
- double? _tempF,
- int? _isDay,
- ConditionData _condition,
- double? _windMph,
- double? _windKph,
- int? _windDegree,
- String? _windDir,
- double? _pressureMb,
- double? _pressureIn,
- double? _precipMm,
- double? _precipIn,
- int? _humidity,
- int? _cloud,
- double? _feelslikeC,
- double? _feelslikeF,
- double? _visKm,
- double? _visMiles,
- double? _uv,
- double? _gustMph,
- double? _gustKph,
- AirQualityData _airQuality,
Implementation
CurrentWeatherData(
this._lastUpdatedEpoch,
this._lastUpdated,
this._tempC,
this._tempF,
this._isDay,
this._condition,
this._windMph,
this._windKph,
this._windDegree,
this._windDir,
this._pressureMb,
this._pressureIn,
this._precipMm,
this._precipIn,
this._humidity,
this._cloud,
this._feelslikeC,
this._feelslikeF,
this._visKm,
this._visMiles,
this._uv,
this._gustMph,
this._gustKph,
this._airQuality);