copyWithWrapped method

WebApiModulesAdministratorCustomFieldCustomField copyWithWrapped({
  1. Wrapped<String?>? customFieldId,
  2. Wrapped<String?>? moduleName,
  3. Wrapped<String?>? fieldName,
  4. Wrapped<String?>? customTableName,
  5. Wrapped<String?>? customFieldName,
  6. Wrapped<String?>? fieldType,
  7. Wrapped<String?>? controlType,
  8. Wrapped<int?>? stringLength,
  9. Wrapped<int?>? floatDecimalDigits,
  10. Wrapped<String?>? dateStamp,
  11. Wrapped<String?>? auditNote,
  12. Wrapped<String?>? recordTitle,
  13. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  14. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  15. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  16. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesAdministratorCustomFieldCustomField copyWithWrapped(
    {Wrapped<String?>? customFieldId,
    Wrapped<String?>? moduleName,
    Wrapped<String?>? fieldName,
    Wrapped<String?>? customTableName,
    Wrapped<String?>? customFieldName,
    Wrapped<String?>? fieldType,
    Wrapped<String?>? controlType,
    Wrapped<int?>? stringLength,
    Wrapped<int?>? floatDecimalDigits,
    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 WebApiModulesAdministratorCustomFieldCustomField(
      customFieldId:
          (customFieldId != null ? customFieldId.value : this.customFieldId),
      moduleName: (moduleName != null ? moduleName.value : this.moduleName),
      fieldName: (fieldName != null ? fieldName.value : this.fieldName),
      customTableName: (customTableName != null
          ? customTableName.value
          : this.customTableName),
      customFieldName: (customFieldName != null
          ? customFieldName.value
          : this.customFieldName),
      fieldType: (fieldType != null ? fieldType.value : this.fieldType),
      controlType:
          (controlType != null ? controlType.value : this.controlType),
      stringLength:
          (stringLength != null ? stringLength.value : this.stringLength),
      floatDecimalDigits: (floatDecimalDigits != null
          ? floatDecimalDigits.value
          : this.floatDecimalDigits),
      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));
}