kemApiV3DevicesIdTrendsTrendGet method
- required int? id,
- required TrendPathParam? trend,
- DateTime? since,
Get the historical trends for the given parameter of the device with the given ID @param id @param trend @param since
Implementation
Future<chopper.Response<List<TrendValueDTO>>>
kemApiV3DevicesIdTrendsTrendGet({
required int? id,
required enums.TrendPathParam? trend,
DateTime? since,
}) {
generatedMapping.putIfAbsent(
TrendValueDTO, () => TrendValueDTO.fromJsonFactory);
return _kemApiV3DevicesIdTrendsTrendGet(
id: id, trend: trend?.value?.toString(), since: since);
}