fromValue static method

NSFileVersionReplacingOptions fromValue(
  1. int value
)

Implementation

static NSFileVersionReplacingOptions fromValue(int value) => switch (value) {
  1 => NSFileVersionReplacingByMoving,
  _ => throw ArgumentError('Unknown value for NSFileVersionReplacingOptions: $value'),
};