fromString static method
Create from string value
Implementation
static ServiceTier? fromString(String? value) {
if (value == null) return null;
switch (value.toLowerCase()) {
case 'auto':
return ServiceTier.auto;
case 'standard':
case 'standard_only':
return ServiceTier.standard;
case 'priority':
return ServiceTier.priority;
default:
return null;
}
}