supportsEcoCycleMode function
- String? modelNumber
Whether a generator with the given model number supports the ExerciseMode.ecoCycle exercise mode.
Implementation
bool supportsEcoCycleMode(String? modelNumber) {
// Only 26KW supports ecoCycle exercise mode
return kEcoExerciseModels.contains(modelNumber);
}