copyWith method

WebApiModulesReportsWarehouseReportsContainerPackingListContainerPackingListRequest copyWith({
  1. String? containerItemId,
  2. String? appLanguageId,
  3. String? customReportLayoutId,
  4. bool? isSummary,
  5. bool? includeSubHeadingsAndSubTotals,
  6. bool? includeIdColumns,
  7. String? locale,
  8. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

Implementation

WebApiModulesReportsWarehouseReportsContainerPackingListContainerPackingListRequest
    copyWith(
        {String? containerItemId,
        String? appLanguageId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  return WebApiModulesReportsWarehouseReportsContainerPackingListContainerPackingListRequest(
      containerItemId: containerItemId ?? this.containerItemId,
      appLanguageId: appLanguageId ?? this.appLanguageId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}