WindSpeedIcon constructor

const WindSpeedIcon({
  1. Key? key,
  2. required WindPower? windSpeed,
  3. required dynamic onChanged(
    1. WindPower?
    ),
})

Implementation

const WindSpeedIcon(
    {Key? key, required this.windSpeed, required this.onChanged})
    : super(key: key);