forwardForecast property

double forwardForecast

Implementation

double get forwardForecast => _forwardForecast;
void forwardForecast=(double value)

Implementation

set forwardForecast(double value) {
  if (_forwardForecast != value) {
    _forwardForecast = value;
    markNeedsLayout();
  }
}