WindPreview constructor

const WindPreview({
  1. required WeatherData weatherData,
  2. Key? key,
  3. required dynamic onChanged(
    1. WeatherData
    ),
})

Implementation

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