Conditions constructor
Creates a Conditions instance.
type: The type of condition. See PredefinedParameterTypeValues for possible values. stamp: The UTC datetime for the condition. description: The translated description according to the current SDK language. daylight: The daylight condition. params: The list of weather parameters. img: The image representing the condition.
Implementation
Conditions({
required this.type,
required this.stamp,
required this.description,
required this.daylight,
required this.params,
required this.img,
});