copyWith method

WebApiModulesReportsAccountingReportsGlDistributionReportGlDistributionReportRequest copyWith({
  1. DateTime? fromDate,
  2. DateTime? toDate,
  3. String? officeLocationId,
  4. String? glDistributionType,
  5. String? glAccountId,
  6. String? excludeGlAccountId,
  7. String? dealId,
  8. bool? isSomeDetail,
  9. bool? isFullDetail,
  10. String? userDepartmentId,
  11. String? userLocationId,
  12. String? userWarehouseId,
  13. String? customReportLayoutId,
  14. bool? isSummary,
  15. bool? includeSubHeadingsAndSubTotals,
  16. bool? includeIdColumns,
  17. String? locale,
  18. List<FwStandardModelsCheckBoxListItem>? excelfields,
  19. String? reportName,
  20. bool? useEmailTemplate,
})

Implementation

WebApiModulesReportsAccountingReportsGlDistributionReportGlDistributionReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        String? officeLocationId,
        String? glDistributionType,
        String? glAccountId,
        String? excludeGlAccountId,
        String? dealId,
        bool? isSomeDetail,
        bool? isFullDetail,
        String? userDepartmentId,
        String? userLocationId,
        String? userWarehouseId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields,
        String? reportName,
        bool? useEmailTemplate}) {
  return WebApiModulesReportsAccountingReportsGlDistributionReportGlDistributionReportRequest(
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate,
      officeLocationId: officeLocationId ?? this.officeLocationId,
      glDistributionType: glDistributionType ?? this.glDistributionType,
      glAccountId: glAccountId ?? this.glAccountId,
      excludeGlAccountId: excludeGlAccountId ?? this.excludeGlAccountId,
      dealId: dealId ?? this.dealId,
      isSomeDetail: isSomeDetail ?? this.isSomeDetail,
      isFullDetail: isFullDetail ?? this.isFullDetail,
      userDepartmentId: userDepartmentId ?? this.userDepartmentId,
      userLocationId: userLocationId ?? this.userLocationId,
      userWarehouseId: userWarehouseId ?? this.userWarehouseId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields,
      reportName: reportName ?? this.reportName,
      useEmailTemplate: useEmailTemplate ?? this.useEmailTemplate);
}