fromValue static method
Implementation
static NSURLCacheStoragePolicy fromValue(int value) => switch (value) {
0 => NSURLCacheStorageAllowed,
1 => NSURLCacheStorageAllowedInMemoryOnly,
2 => NSURLCacheStorageNotAllowed,
_ => throw ArgumentError('Unknown value for NSURLCacheStoragePolicy: $value'),
};