fromValue static method
Implementation
static NSFileManagerResumeSyncBehavior fromValue(int value) => switch (value) {
0 => NSFileManagerResumeSyncBehaviorPreserveLocalChanges,
1 => NSFileManagerResumeSyncBehaviorAfterUploadWithFailOnConflict,
2 => NSFileManagerResumeSyncBehaviorDropLocalChanges,
_ => throw ArgumentError('Unknown value for NSFileManagerResumeSyncBehavior: $value'),
};