populationTypeValues top-level property
A helper class to map population type values to and from strings.
Implementation
final EnumValues<PopulationType> populationTypeValues =
EnumValues<PopulationType>(<String, PopulationType>{
'LOW': PopulationType.LOW,
'MEDIUM': PopulationType.MEDIUM,
'HIGH': PopulationType.HIGH,
'FULL': PopulationType.FULL,
'LOCKED': PopulationType.LOCKED,
'RECOMMENDED': PopulationType.RECOMMENDED,
'OFFLINE': PopulationType.OFFLINE,
});