fromValue static method
Implementation
static NSViewLayerContentsRedrawPolicy fromValue(int value) => switch (value) {
0 => NSViewLayerContentsRedrawNever,
1 => NSViewLayerContentsRedrawOnSetNeedsDisplay,
2 => NSViewLayerContentsRedrawDuringViewResize,
3 => NSViewLayerContentsRedrawBeforeViewResize,
4 => NSViewLayerContentsRedrawCrossfade,
_ => throw ArgumentError('Unknown value for NSViewLayerContentsRedrawPolicy: $value'),
};