fromRawValue static method

InputImageFormat? fromRawValue(
  1. int rawValue
)

Implementation

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