architecture property

  1. @TagNumber.new(5)
String get architecture

ABI name as the OS reports it: Android sends Build.SUPPORTED_ABIS0 ("arm64-v8a"), Apple "arm64", Web "wasm32". Kept a string because no industry API enumerates ABIs — but the spelling is the OS's, not ours.

Implementation

@$pb.TagNumber(5)
$core.String get architecture => $_getSZ(4);
  1. @TagNumber.new(5)
set architecture (String value)

Implementation

@$pb.TagNumber(5)
set architecture($core.String value) => $_setString(4, value);