toScalingBehavior method
Implementation
ScalingBehavior toScalingBehavior() {
switch (this) {
case 'DEFAULT':
return ScalingBehavior.$default;
case 'STRETCH_TO_OUTPUT':
return ScalingBehavior.stretchToOutput;
}
throw Exception('$this is not known in enum ScalingBehavior');
}