isChinaTelecom static method

Future<bool?> isChinaTelecom()

ios独有 判断当前上网卡运营商是否是中国电信 @return 结果

Implementation

static Future<bool?> isChinaTelecom() async {
  return await _channel.invokeMethod('isChinaTelecom');
}