getBindDevices static method

Future<List<BtDeviceModel>> getBindDevices()

获取本地绑定的设备

Implementation

static Future<List<BtDeviceModel>> getBindDevices() async {
  String jsonStr = await _channel.invokeMethod("bindedDrivers");
  return permissionModelFromJson(jsonStr);
}