fromValue static method
Implementation
static NSURLSessionMultipathServiceType fromValue(int value) =>
switch (value) {
0 => NSURLSessionMultipathServiceTypeNone,
1 => NSURLSessionMultipathServiceTypeHandover,
2 => NSURLSessionMultipathServiceTypeInteractive,
3 => NSURLSessionMultipathServiceTypeAggregate,
_ => throw ArgumentError(
'Unknown value for NSURLSessionMultipathServiceType: $value',
),
};