NSAppPresentationOptions.from constructor
NSAppPresentationOptions.from(
- Iterable<
NSAppPresentationOption> iterable
Creates a NSAppPresentationOptions instance from any collectible.
Implementation
factory NSAppPresentationOptions.from(
Iterable<NSAppPresentationOption> iterable) {
return NSAppPresentationOptions._fromSet(Set.from(iterable));
}