getAbi static method
Gets the Android Binary Interface getAbi of the device
Implementation
static Future<String> getAbi() async {
try {
return _abi;
} on PlatformException catch (e) {
throw 'Failed to retrieve abi ${e.code}: ${e.message}';
}
}