builder method
- WindPower? wp
Implementation
Widget builder(WindPower? wp) => Text(
wp == WindPower.none
? "windstill"
: wp == WindPower.medium
? "mäßiger wind"
: wp == WindPower.strong
? "starker wind"
: "unbekannter wind",
style: TextStyle(fontSize: 8),
);