cpuAbis property

Future<String> cpuAbis

Get the CPU ABI(CPU Type) of the native platform

return CPU ABI(CPU Type eg.arm64-v8a)

Implementation

static Future<String> get cpuAbis async {
  final String version = await _channel.invokeMethod('getCPUABI');
  return version;
}