fromValue static method
Implementation
static NSTextStorageEditActions fromValue(int value) => switch (value) {
  1 => NSTextStorageEditedAttributes,
  2 => NSTextStorageEditedCharacters,
  _ => throw ArgumentError('Unknown value for NSTextStorageEditActions: $value'),
};