copyWithWrapped method
WebApiModulesReportsOrderChangeReportOrderChangeReportRequest
copyWithWrapped({
- Wrapped<
String?> ? orderType, - Wrapped<
String?> ? orderId, - Wrapped<
String?> ? quoteId, - Wrapped<
String?> ? fromDate, - Wrapped<
String?> ? fromTime, - Wrapped<
String?> ? toDate, - Wrapped<
String?> ? toTime, - Wrapped<
String?> ? filterBy, - Wrapped<
int?> ? hoursOffsetFromUTC, - Wrapped<
bool?> ? excludeZeroVariance, - Wrapped<
String?> ? userDepartmentId, - Wrapped<
String?> ? userLocationId, - Wrapped<
String?> ? userWarehouseId, - Wrapped<
String?> ? customReportLayoutId, - Wrapped<
bool?> ? isSummary, - Wrapped<
bool?> ? includeSubHeadingsAndSubTotals, - Wrapped<
bool?> ? includeIdColumns, - Wrapped<
String?> ? locale, - Wrapped<
List< ? excelfields,FwStandardModelsCheckBoxListItem> ?> - Wrapped<
String?> ? reportName, - Wrapped<
bool?> ? useEmailTemplate,
Implementation
WebApiModulesReportsOrderChangeReportOrderChangeReportRequest
copyWithWrapped({
Wrapped<String?>? orderType,
Wrapped<String?>? orderId,
Wrapped<String?>? quoteId,
Wrapped<String?>? fromDate,
Wrapped<String?>? fromTime,
Wrapped<String?>? toDate,
Wrapped<String?>? toTime,
Wrapped<String?>? filterBy,
Wrapped<int?>? hoursOffsetFromUTC,
Wrapped<bool?>? excludeZeroVariance,
Wrapped<String?>? userDepartmentId,
Wrapped<String?>? userLocationId,
Wrapped<String?>? userWarehouseId,
Wrapped<String?>? customReportLayoutId,
Wrapped<bool?>? isSummary,
Wrapped<bool?>? includeSubHeadingsAndSubTotals,
Wrapped<bool?>? includeIdColumns,
Wrapped<String?>? locale,
Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields,
Wrapped<String?>? reportName,
Wrapped<bool?>? useEmailTemplate,
}) {
return WebApiModulesReportsOrderChangeReportOrderChangeReportRequest(
orderType: (orderType != null ? orderType.value : this.orderType),
orderId: (orderId != null ? orderId.value : this.orderId),
quoteId: (quoteId != null ? quoteId.value : this.quoteId),
fromDate: (fromDate != null ? fromDate.value : this.fromDate),
fromTime: (fromTime != null ? fromTime.value : this.fromTime),
toDate: (toDate != null ? toDate.value : this.toDate),
toTime: (toTime != null ? toTime.value : this.toTime),
filterBy: (filterBy != null ? filterBy.value : this.filterBy),
hoursOffsetFromUTC: (hoursOffsetFromUTC != null
? hoursOffsetFromUTC.value
: this.hoursOffsetFromUTC),
excludeZeroVariance: (excludeZeroVariance != null
? excludeZeroVariance.value
: this.excludeZeroVariance),
userDepartmentId: (userDepartmentId != null
? userDepartmentId.value
: this.userDepartmentId),
userLocationId: (userLocationId != null
? userLocationId.value
: this.userLocationId),
userWarehouseId: (userWarehouseId != null
? userWarehouseId.value
: this.userWarehouseId),
customReportLayoutId: (customReportLayoutId != null
? customReportLayoutId.value
: this.customReportLayoutId),
isSummary: (isSummary != null ? isSummary.value : this.isSummary),
includeSubHeadingsAndSubTotals: (includeSubHeadingsAndSubTotals != null
? includeSubHeadingsAndSubTotals.value
: this.includeSubHeadingsAndSubTotals),
includeIdColumns: (includeIdColumns != null
? includeIdColumns.value
: this.includeIdColumns),
locale: (locale != null ? locale.value : this.locale),
excelfields: (excelfields != null ? excelfields.value : this.excelfields),
reportName: (reportName != null ? reportName.value : this.reportName),
useEmailTemplate: (useEmailTemplate != null
? useEmailTemplate.value
: this.useEmailTemplate),
);
}