scanBluetooth static method

Future<String?> scanBluetooth()

蓝牙扫描

Implementation

static Future<String?> scanBluetooth() async {
  var p = await _channel.invokeMethod('scanBluetooth');
  String str = String.fromCharCodes(p);
  return str;
}