toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case TargetPlatformArch.x86_64:
      return 'X86_64';
    case TargetPlatformArch.x86:
      return 'X86';
    case TargetPlatformArch.arm64:
      return 'ARM64';
    case TargetPlatformArch.armEabi:
      return 'ARM_EABI';
    case TargetPlatformArch.armEabihf:
      return 'ARM_EABIHF';
  }
}