toAutoScalingType method

AutoScalingType toAutoScalingType()

Implementation

AutoScalingType toAutoScalingType() {
  switch (this) {
    case 'load':
      return AutoScalingType.load;
    case 'timer':
      return AutoScalingType.timer;
  }
  throw Exception('$this is not known in enum AutoScalingType');
}