getDeviceRecipeMenuInfo static method
获取设备激活菜单信息
Implementation
static Future<String> getDeviceRecipeMenuInfo(String deviceId) async {
Map<String, dynamic> body = _generateCommBody();
body["deviceId"] = deviceId;
var result = await HttpUtils.post(false, Api.PATH_GET_DEVICE_RECIPE_MENU_INFO, data: body);
return formatResponse(result);
}