WindowsAttributes constructor

WindowsAttributes({
  1. required WindowsArchitecture architecture,
  2. required WindowsBuildVersion buildVersion,
})

Creates a new instance of WindowsAttributes.

architecture: The CPU architecture of the Windows system. buildVersion: The specific build and version of the Windows OS.

Implementation

WindowsAttributes({required this.architecture, required this.buildVersion})
    : super("windows", buildVersion.version);