kemApiV3DevicesParametersFavoritesPost method

Future<Response<ParameterIdListingDTO>> kemApiV3DevicesParametersFavoritesPost({
  1. required ParameterListingUpdateV3Body? body,
})

Update the favorite parameters for the device with the given ID.

Implementation

Future<chopper.Response<ParameterIdListingDTO>>
    kemApiV3DevicesParametersFavoritesPost(
        {required ParameterListingUpdateV3Body? body}) {
  generatedMapping.putIfAbsent(
      ParameterIdListingDTO, () => ParameterIdListingDTO.fromJsonFactory);

  return _kemApiV3DevicesParametersFavoritesPost(body: body);
}