toInputLossImageType method
Implementation
InputLossImageType toInputLossImageType() {
switch (this) {
case 'COLOR':
return InputLossImageType.color;
case 'SLATE':
return InputLossImageType.slate;
}
throw Exception('$this is not known in enum InputLossImageType');
}