linux static method

Platform<LinuxAttributes> linux({
  1. required LinuxArchitecture architecture,
})

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),
);