fromValue static method

NSPasteboardContentsOptions fromValue(
  1. int value
)

Implementation

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