copyWithWrapped method
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? urlIdentifier,
- Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
FwStandardBusinessLogicFwBusinessLogic?> ? original, - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?> - Wrapped<
bool?> ? hasImport, - Wrapped<
bool?> ? hasDocuments, - Wrapped<
String?> ? createdByUserId, - Wrapped<
String?> ? createdByUserName, - Wrapped<
String?> ? createdDateTime, - Wrapped<
String?> ? modifiedByUserId, - Wrapped<
String?> ? modifiedByUserName, - 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<bool?>? hasDocuments,
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),
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),
);
}