copyWithWrapped method

WebApiModulesSettingsFiscalMonthFiscalMonth copyWithWrapped({
  1. Wrapped<String?>? fiscalMonthId,
  2. Wrapped<String?>? fiscalYearId,
  3. Wrapped<String?>? year,
  4. Wrapped<int?>? month,
  5. Wrapped<String?>? monthDisplay,
  6. Wrapped<String?>? fromDate,
  7. Wrapped<String?>? toDate,
  8. Wrapped<String?>? monthYear,
  9. Wrapped<int?>? workDays,
  10. Wrapped<String?>? fiscalOrder,
  11. Wrapped<bool?>? closed,
  12. Wrapped<String?>? dateStamp,
  13. Wrapped<String?>? auditNote,
  14. Wrapped<String?>? recordTitle,
  15. Wrapped? urlIdentifier,
  16. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  17. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  18. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  19. Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  20. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  21. Wrapped<bool?>? hasImport,
  22. Wrapped<bool?>? hasDocuments,
  23. Wrapped<String?>? createdByUserId,
  24. Wrapped<String?>? createdByUserName,
  25. Wrapped<String?>? createdDateTime,
  26. Wrapped<String?>? modifiedByUserId,
  27. Wrapped<String?>? modifiedByUserName,
  28. Wrapped<String?>? modifiedDateTime,
})

Implementation

WebApiModulesSettingsFiscalMonthFiscalMonth copyWithWrapped({
  Wrapped<String?>? fiscalMonthId,
  Wrapped<String?>? fiscalYearId,
  Wrapped<String?>? year,
  Wrapped<int?>? month,
  Wrapped<String?>? monthDisplay,
  Wrapped<String?>? fromDate,
  Wrapped<String?>? toDate,
  Wrapped<String?>? monthYear,
  Wrapped<int?>? workDays,
  Wrapped<String?>? fiscalOrder,
  Wrapped<bool?>? closed,
  Wrapped<String?>? dateStamp,
  Wrapped<String?>? auditNote,
  Wrapped<String?>? recordTitle,
  Wrapped<dynamic>? urlIdentifier,
  Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
  fields,
  Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  Wrapped<bool?>? hasImport,
  Wrapped<bool?>? hasDocuments,
  Wrapped<String?>? createdByUserId,
  Wrapped<String?>? createdByUserName,
  Wrapped<String?>? createdDateTime,
  Wrapped<String?>? modifiedByUserId,
  Wrapped<String?>? modifiedByUserName,
  Wrapped<String?>? modifiedDateTime,
}) {
  return WebApiModulesSettingsFiscalMonthFiscalMonth(
    fiscalMonthId: (fiscalMonthId != null
        ? fiscalMonthId.value
        : this.fiscalMonthId),
    fiscalYearId: (fiscalYearId != null
        ? fiscalYearId.value
        : this.fiscalYearId),
    year: (year != null ? year.value : this.year),
    month: (month != null ? month.value : this.month),
    monthDisplay: (monthDisplay != null
        ? monthDisplay.value
        : this.monthDisplay),
    fromDate: (fromDate != null ? fromDate.value : this.fromDate),
    toDate: (toDate != null ? toDate.value : this.toDate),
    monthYear: (monthYear != null ? monthYear.value : this.monthYear),
    workDays: (workDays != null ? workDays.value : this.workDays),
    fiscalOrder: (fiscalOrder != null ? fiscalOrder.value : this.fiscalOrder),
    closed: (closed != null ? closed.value : this.closed),
    dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
    auditNote: (auditNote != null ? auditNote.value : this.auditNote),
    recordTitle: (recordTitle != null ? recordTitle.value : this.recordTitle),
    urlIdentifier: (urlIdentifier != null
        ? urlIdentifier.value
        : this.urlIdentifier),
    fields: (fields != null ? fields.value : this.fields),
    custom: (custom != null ? custom.value : this.custom),
    defaultFieldAttributes: (defaultFieldAttributes != null
        ? defaultFieldAttributes.value
        : this.defaultFieldAttributes),
    original: (original != null ? original.value : this.original),
    translation: (translation != null ? translation.value : this.translation),
    hasImport: (hasImport != null ? hasImport.value : this.hasImport),
    hasDocuments: (hasDocuments != null
        ? hasDocuments.value
        : this.hasDocuments),
    createdByUserId: (createdByUserId != null
        ? createdByUserId.value
        : this.createdByUserId),
    createdByUserName: (createdByUserName != null
        ? createdByUserName.value
        : this.createdByUserName),
    createdDateTime: (createdDateTime != null
        ? createdDateTime.value
        : this.createdDateTime),
    modifiedByUserId: (modifiedByUserId != null
        ? modifiedByUserId.value
        : this.modifiedByUserId),
    modifiedByUserName: (modifiedByUserName != null
        ? modifiedByUserName.value
        : this.modifiedByUserName),
    modifiedDateTime: (modifiedDateTime != null
        ? modifiedDateTime.value
        : this.modifiedDateTime),
  );
}