linux static method
Creates a Linux platform with the specified architecture and optional distribution.
If distribution is not provided, defaults to LinuxDistribution.unspecified.
Implementation
static Platform<LinuxAttributes> linux({
required LinuxArchitecture architecture,
}) => Platform(
os: OperatingSystem.linux,
attributes: LinuxAttributes(architecture: architecture),
);