getFlutterCpuArchitecture function
Implementation
String getFlutterCpuArchitecture(CpuArchitecture arch) {
return switch (arch) {
CpuArchitecture.amd64 => 'x64',
CpuArchitecture.arm64 => 'arm64',
_ => throw UnimplementedError(
'Cpu architecture $arch is not supported by Flutter. '
'See https://github.com/flutter/flutter/issues/75823 for more information.',
),
};
}