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?>? validationModule,
  11. Wrapped<String?>? validationFieldId,
  12. Wrapped<String?>? validationFieldName,
  13. Wrapped<String?>? listFieldAllowedValues,
  14. Wrapped<String?>? dateStamp,
  15. Wrapped<String?>? auditNote,
  16. Wrapped<String?>? recordTitle,
  17. Wrapped? urlIdentifier,
  18. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  19. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  20. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  21. Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  22. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  23. Wrapped<bool?>? hasImport,
  24. Wrapped<bool?>? hasDocuments,
  25. Wrapped<String?>? createdByUserId,
  26. Wrapped<String?>? createdByUserName,
  27. Wrapped<String?>? createdDateTime,
  28. Wrapped<String?>? modifiedByUserId,
  29. Wrapped<String?>? modifiedByUserName,
  30. Wrapped<String?>? modifiedDateTime,
})

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?>? validationModule,
  Wrapped<String?>? validationFieldId,
  Wrapped<String?>? validationFieldName,
  Wrapped<String?>? listFieldAllowedValues,
  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 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),
    validationModule: (validationModule != null
        ? validationModule.value
        : this.validationModule),
    validationFieldId: (validationFieldId != null
        ? validationFieldId.value
        : this.validationFieldId),
    validationFieldName: (validationFieldName != null
        ? validationFieldName.value
        : this.validationFieldName),
    listFieldAllowedValues: (listFieldAllowedValues != null
        ? listFieldAllowedValues.value
        : this.listFieldAllowedValues),
    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),
  );
}