toPriceUnits method
Implementation
PriceUnits toPriceUnits() {
switch (this) {
case 'HOURLY':
return PriceUnits.hourly;
}
throw Exception('$this is not known in enum PriceUnits');
}
PriceUnits toPriceUnits() {
switch (this) {
case 'HOURLY':
return PriceUnits.hourly;
}
throw Exception('$this is not known in enum PriceUnits');
}