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? urlIdentifier,
  23. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  24. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  25. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  26. Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  27. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  28. Wrapped<bool?>? hasImport,
  29. Wrapped<String?>? createdByUserId,
  30. Wrapped<String?>? createdByUserName,
  31. Wrapped<String?>? createdDateTime,
  32. Wrapped<String?>? modifiedByUserId,
  33. Wrapped<String?>? modifiedByUserName,
  34. Wrapped<String?>? modifiedDateTime,
})

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<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<String?>? createdByUserId,
  Wrapped<String?>? createdByUserName,
  Wrapped<String?>? createdDateTime,
  Wrapped<String?>? modifiedByUserId,
  Wrapped<String?>? modifiedByUserName,
  Wrapped<String?>? modifiedDateTime,
}) {
  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),
    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),
    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),
  );
}