windDirectionFullName property
Get wind direction full name.
Implementation
String get windDirectionFullName {
return switch (windDirectionDescription) {
'N' => 'North',
'NE' => 'Northeast',
'E' => 'East',
'SE' => 'Southeast',
'S' => 'South',
'SW' => 'Southwest',
'W' => 'West',
'NW' => 'Northwest',
_ => 'Unknown',
};
}