toOriginRequestPolicyType method
Implementation
OriginRequestPolicyType toOriginRequestPolicyType() {
switch (this) {
case 'managed':
return OriginRequestPolicyType.managed;
case 'custom':
return OriginRequestPolicyType.custom;
}
throw Exception('$this is not known in enum OriginRequestPolicyType');
}