copyWithWrapped method

WebApiModulesUtilitiesProgressMeterProgressMeter copyWithWrapped({
  1. Wrapped<String?>? sessionId,
  2. Wrapped<String?>? caption,
  3. Wrapped<int?>? currentStep,
  4. Wrapped<int?>? totalSteps,
  5. Wrapped<int?>? percentComplete,
  6. Wrapped<String?>? auditNote,
  7. Wrapped<String?>? recordTitle,
  8. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  9. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  10. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  11. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesUtilitiesProgressMeterProgressMeter copyWithWrapped(
    {Wrapped<String?>? sessionId,
    Wrapped<String?>? caption,
    Wrapped<int?>? currentStep,
    Wrapped<int?>? totalSteps,
    Wrapped<int?>? percentComplete,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
    Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesUtilitiesProgressMeterProgressMeter(
      sessionId: (sessionId != null ? sessionId.value : this.sessionId),
      caption: (caption != null ? caption.value : this.caption),
      currentStep:
          (currentStep != null ? currentStep.value : this.currentStep),
      totalSteps: (totalSteps != null ? totalSteps.value : this.totalSteps),
      percentComplete: (percentComplete != null
          ? percentComplete.value
          : this.percentComplete),
      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));
}