getAbi static method

Future<String?> getAbi()

Gets the Android Binary Interface getAbi of the device

Implementation

static Future<String?> getAbi() async {
  try {
    return _abi ??= await _channel.invokeMethod('getAbi');
  } on PlatformException catch (e) {
    throw 'Failed to retrieve abi ${e.code}: ${e.message}';
  }
}