ios static method
Creates an iOS platform for the specified version and sdkVersion.
Implementation
static Platform<iOSAttributes> ios({
required sdkVersion,
}) => Platform(
os: OperatingSystem.ios,
attributes: iOSAttributes(sdkVersion: sdkVersion),
);