copyWithWrapped method

WebApiModulesHomeItemChargeItemCharge copyWithWrapped({
  1. Wrapped<String?>? itemChargeId,
  2. Wrapped<String?>? uniqueId1,
  3. Wrapped<String?>? chargeCode1,
  4. Wrapped<String?>? chargeCode2,
  5. Wrapped<String?>? chargeCode3,
  6. Wrapped<String?>? dateStamp,
  7. Wrapped<String?>? auditNote,
  8. Wrapped<String?>? recordTitle,
  9. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  10. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  11. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  12. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesHomeItemChargeItemCharge copyWithWrapped(
    {Wrapped<String?>? itemChargeId,
    Wrapped<String?>? uniqueId1,
    Wrapped<String?>? chargeCode1,
    Wrapped<String?>? chargeCode2,
    Wrapped<String?>? chargeCode3,
    Wrapped<String?>? dateStamp,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
    Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesHomeItemChargeItemCharge(
      itemChargeId:
          (itemChargeId != null ? itemChargeId.value : this.itemChargeId),
      uniqueId1: (uniqueId1 != null ? uniqueId1.value : this.uniqueId1),
      chargeCode1:
          (chargeCode1 != null ? chargeCode1.value : this.chargeCode1),
      chargeCode2:
          (chargeCode2 != null ? chargeCode2.value : this.chargeCode2),
      chargeCode3:
          (chargeCode3 != null ? chargeCode3.value : this.chargeCode3),
      dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
      auditNote: (auditNote != null ? auditNote.value : this.auditNote),
      recordTitle:
          (recordTitle != null ? recordTitle.value : this.recordTitle),
      fields: (fields != null ? fields.value : this.fields),
      custom: (custom != null ? custom.value : this.custom),
      defaultFieldAttributes: (defaultFieldAttributes != null
          ? defaultFieldAttributes.value
          : this.defaultFieldAttributes),
      translation:
          (translation != null ? translation.value : this.translation));
}