fromValue static method

Implementation

static UIDropSessionProgressIndicatorStyle fromValue(int value) => switch (value) {
  0 => UIDropSessionProgressIndicatorStyleNone,
  1 => UIDropSessionProgressIndicatorStyleDefault,
  _ => throw ArgumentError('Unknown value for UIDropSessionProgressIndicatorStyle: $value'),
};