toScope method
Implementation
Scope toScope() {
switch (this) {
case 'CLOUDFRONT':
return Scope.cloudfront;
case 'REGIONAL':
return Scope.regional;
}
throw Exception('$this is not known in enum Scope');
}
Scope toScope() {
switch (this) {
case 'CLOUDFRONT':
return Scope.cloudfront;
case 'REGIONAL':
return Scope.regional;
}
throw Exception('$this is not known in enum Scope');
}