copyWithWrapped method

WebApiModulesSettingsSpaceSpace copyWithWrapped({
  1. Wrapped<String?>? spaceId,
  2. Wrapped<String?>? buildingId,
  3. Wrapped<String?>? building,
  4. Wrapped<String?>? floorId,
  5. Wrapped<String?>? floor,
  6. Wrapped<String?>? space,
  7. Wrapped<int?>? orderBy,
  8. Wrapped<String?>? buildingSpace,
  9. Wrapped<String?>? buildingFloorSpace,
  10. Wrapped<double?>? squareFeet,
  11. Wrapped<String?>? spaceFromDate,
  12. Wrapped<String?>? spaceToDate,
  13. Wrapped<bool?>? commonSquareFeet,
  14. Wrapped<String?>? primaryDimensionId,
  15. Wrapped<int?>? widthFt,
  16. Wrapped<int?>? heightFt,
  17. Wrapped<int?>? lengthFt,
  18. Wrapped<int?>? occupancy,
  19. Wrapped<bool?>? inactive,
  20. Wrapped<String?>? auditNote,
  21. Wrapped<String?>? recordTitle,
  22. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  23. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  24. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  25. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesSettingsSpaceSpace copyWithWrapped(
    {Wrapped<String?>? spaceId,
    Wrapped<String?>? buildingId,
    Wrapped<String?>? building,
    Wrapped<String?>? floorId,
    Wrapped<String?>? floor,
    Wrapped<String?>? space,
    Wrapped<int?>? orderBy,
    Wrapped<String?>? buildingSpace,
    Wrapped<String?>? buildingFloorSpace,
    Wrapped<double?>? squareFeet,
    Wrapped<String?>? spaceFromDate,
    Wrapped<String?>? spaceToDate,
    Wrapped<bool?>? commonSquareFeet,
    Wrapped<String?>? primaryDimensionId,
    Wrapped<int?>? widthFt,
    Wrapped<int?>? heightFt,
    Wrapped<int?>? lengthFt,
    Wrapped<int?>? occupancy,
    Wrapped<bool?>? inactive,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
    Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesSettingsSpaceSpace(
      spaceId: (spaceId != null ? spaceId.value : this.spaceId),
      buildingId: (buildingId != null ? buildingId.value : this.buildingId),
      building: (building != null ? building.value : this.building),
      floorId: (floorId != null ? floorId.value : this.floorId),
      floor: (floor != null ? floor.value : this.floor),
      space: (space != null ? space.value : this.space),
      orderBy: (orderBy != null ? orderBy.value : this.orderBy),
      buildingSpace:
          (buildingSpace != null ? buildingSpace.value : this.buildingSpace),
      buildingFloorSpace: (buildingFloorSpace != null
          ? buildingFloorSpace.value
          : this.buildingFloorSpace),
      squareFeet: (squareFeet != null ? squareFeet.value : this.squareFeet),
      spaceFromDate:
          (spaceFromDate != null ? spaceFromDate.value : this.spaceFromDate),
      spaceToDate:
          (spaceToDate != null ? spaceToDate.value : this.spaceToDate),
      commonSquareFeet: (commonSquareFeet != null
          ? commonSquareFeet.value
          : this.commonSquareFeet),
      primaryDimensionId: (primaryDimensionId != null
          ? primaryDimensionId.value
          : this.primaryDimensionId),
      widthFt: (widthFt != null ? widthFt.value : this.widthFt),
      heightFt: (heightFt != null ? heightFt.value : this.heightFt),
      lengthFt: (lengthFt != null ? lengthFt.value : this.lengthFt),
      occupancy: (occupancy != null ? occupancy.value : this.occupancy),
      inactive: (inactive != null ? inactive.value : this.inactive),
      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));
}