copyWithWrapped method
Implementation
HomeownerDeviceAdditionV2Body copyWithWrapped(
{Wrapped<String?>? serialNumber,
Wrapped<String?>? controllerPin,
Wrapped<String?>? displayName,
Wrapped<DeviceAddressV2?>? address}) {
return HomeownerDeviceAdditionV2Body(
serialNumber:
(serialNumber != null ? serialNumber.value : this.serialNumber),
controllerPin:
(controllerPin != null ? controllerPin.value : this.controllerPin),
displayName:
(displayName != null ? displayName.value : this.displayName),
address: (address != null ? address.value : this.address));
}