isThisPDASupported static method

Future<bool> isThisPDASupported()

查询该PDA是否支持扫码

Implementation

static Future<bool> isThisPDASupported() async {
  _checkIsInit();
  return await _methodChannel.invokeMethod('isPDASupported') ?? false;
}