macos static method
Platform<MacOSAttributes>
macos({
- required MacOSProcessor processor,
- required Version sdkVersion,
Creates a macOS platform targeting the specified processor, version and sdkVersion.
Implementation
static Platform<MacOSAttributes> macos({
required MacOSProcessor processor,
required Version sdkVersion,
}) => Platform(
os: OperatingSystem.macos,
attributes: MacOSAttributes(
processor: processor,
sdkVersion: sdkVersion,
),
);