high property
num
get
high
Daily high temperature, for example '26'.
Implementation
num get high => _convertFromCelsius(_high);
set
high
(num high)
Implementation
set high(num high) {
high = _convertToCelsius(high);
if (high != _high) {
_high = high;
notifyListeners();
}
}