getPDAModel static method

Future<String> getPDAModel()

获取PDA设备型号

Implementation

static Future<String> getPDAModel() async {
  _checkIsInit();
  return await _methodChannel.invokeMethod('getPDAModel') ?? '未知';
}