fromRawValue static method
Implementation
static InputImageRotation? fromRawValue(int rawValue) {
try {
return InputImageRotation.values
.firstWhere((element) => element.rawValue == rawValue);
} catch (_) {
return null;
}
}
static InputImageRotation? fromRawValue(int rawValue) {
try {
return InputImageRotation.values
.firstWhere((element) => element.rawValue == rawValue);
} catch (_) {
return null;
}
}