toScalingType method

ScalingType toScalingType()

Implementation

ScalingType toScalingType() {
  switch (this) {
    case 'UNIFORM_SCALING':
      return ScalingType.uniformScaling;
  }
  throw Exception('$this is not known in enum ScalingType');
}