copyWithWrapped method
Implementation
InstallerEveronAdditionV3Body copyWithWrapped(
{Wrapped<InstallerDTO?>? installer,
Wrapped<String?>? serialNumber,
Wrapped<enums.InstallationTypeDTO?>? installationType,
Wrapped<String?>? displayName,
Wrapped<enums.FuelTypeDTO?>? fuelType,
Wrapped<String?>? timezone}) {
return InstallerEveronAdditionV3Body(
installer: (installer != null ? installer.value : this.installer),
serialNumber:
(serialNumber != null ? serialNumber.value : this.serialNumber),
installationType: (installationType != null
? installationType.value
: this.installationType),
displayName:
(displayName != null ? displayName.value : this.displayName),
fuelType: (fuelType != null ? fuelType.value : this.fuelType),
timezone: (timezone != null ? timezone.value : this.timezone));
}