copyWith method

BodyDownloadHistoryItemsV1HistoryDownloadPost copyWith({
  1. List<String>? historyItemIds,
  2. dynamic outputFormat,
})

Implementation

BodyDownloadHistoryItemsV1HistoryDownloadPost copyWith(
    {List<String>? historyItemIds, dynamic outputFormat}) {
  return BodyDownloadHistoryItemsV1HistoryDownloadPost(
      historyItemIds: historyItemIds ?? this.historyItemIds,
      outputFormat: outputFormat ?? this.outputFormat);
}