macos static method

Platform<MacOSAttributes> macos({
  1. required MacOSProcessor processor,
  2. 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,
  ),
);