copyWith method

WebApiModulesReportsWarehouseReportsStorageContainerLabelStorageContainerLabelRequest copyWith({
  1. String? orderId,
  2. String? printedByUsersId,
  3. String? storageContainerItemId,
  4. String? customReportLayoutId,
  5. bool? isSummary,
  6. bool? includeSubHeadingsAndSubTotals,
  7. bool? includeIdColumns,
  8. String? locale,
  9. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

Implementation

WebApiModulesReportsWarehouseReportsStorageContainerLabelStorageContainerLabelRequest
    copyWith(
        {String? orderId,
        String? printedByUsersId,
        String? storageContainerItemId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  return WebApiModulesReportsWarehouseReportsStorageContainerLabelStorageContainerLabelRequest(
      orderId: orderId ?? this.orderId,
      printedByUsersId: printedByUsersId ?? this.printedByUsersId,
      storageContainerItemId:
          storageContainerItemId ?? this.storageContainerItemId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}