rawValue property
int
get
rawValue
Implementation
int get rawValue {
switch (this) {
case InputImageRotation.rotation0deg:
return 0;
case InputImageRotation.rotation90deg:
return 90;
case InputImageRotation.rotation180deg:
return 180;
case InputImageRotation.rotation270deg:
return 270;
}
}