fromValue static method
Implementation
static UIImageResizingMode fromValue(int value) => switch (value) {
0 => UIImageResizingModeTile,
1 => UIImageResizingModeStretch,
_ => throw ArgumentError("Unknown value for UIImageResizingMode: $value"),
};