insert method
Returns a NSAppPresentationOptions with option inserted.
Implementation
NSAppPresentationOptions insert(NSAppPresentationOption option) {
final newSet = {...options, option};
return NSAppPresentationOptions.from(newSet);
}
Returns a NSAppPresentationOptions with option inserted.
NSAppPresentationOptions insert(NSAppPresentationOption option) {
final newSet = {...options, option};
return NSAppPresentationOptions.from(newSet);
}