fromRawValue static method

InputImageRotation? fromRawValue(
  1. int rawValue
)

Implementation

static InputImageRotation? fromRawValue(int rawValue) {
  return InputImageRotationMethods._values
      .map((k, v) => MapEntry(v, k))[rawValue];
}