supportsMonthlyExerciseFrequency function

bool supportsMonthlyExerciseFrequency(
  1. String? modelNumber
)

Whether a generator with the given model number supports the ExerciseFrequency.monthly frequency.

Implementation

bool supportsMonthlyExerciseFrequency(String? modelNumber) {
  // Only 26KW supports the monthly exercise frequency
  return kEcoExerciseModels.contains(modelNumber);
}