copyWithWrapped method
Implementation
InProgressDeviceAdditionV3Body copyWithWrapped(
{Wrapped<String?>? serialNumber,
Wrapped<String?>? displayName,
Wrapped<AddressDTO?>? address,
Wrapped<String?>? homeownerFirstName,
Wrapped<String?>? homeownerLastName,
Wrapped<String?>? homeownerEmail,
Wrapped<bool?>? sendHomeownerEmail}) {
return InProgressDeviceAdditionV3Body(
serialNumber:
(serialNumber != null ? serialNumber.value : this.serialNumber),
displayName:
(displayName != null ? displayName.value : this.displayName),
address: (address != null ? address.value : this.address),
homeownerFirstName: (homeownerFirstName != null
? homeownerFirstName.value
: this.homeownerFirstName),
homeownerLastName: (homeownerLastName != null
? homeownerLastName.value
: this.homeownerLastName),
homeownerEmail: (homeownerEmail != null
? homeownerEmail.value
: this.homeownerEmail),
sendHomeownerEmail: (sendHomeownerEmail != null
? sendHomeownerEmail.value
: this.sendHomeownerEmail));
}