toThingGroupIndexingMode method
Implementation
ThingGroupIndexingMode toThingGroupIndexingMode() {
switch (this) {
case 'OFF':
return ThingGroupIndexingMode.off;
case 'ON':
return ThingGroupIndexingMode.on;
}
throw Exception('$this is not known in enum ThingGroupIndexingMode');
}