copyWithWrapped method
- Wrapped<
DeviceHostDTO?> ? deviceHost, - Wrapped<
bool?> ? isDryRun,
Implementation
DeviceHostUpdateV3Body copyWithWrapped(
{Wrapped<enums.DeviceHostDTO?>? deviceHost, Wrapped<bool?>? isDryRun}) {
return DeviceHostUpdateV3Body(
deviceHost: (deviceHost != null ? deviceHost.value : this.deviceHost),
isDryRun: (isDryRun != null ? isDryRun.value : this.isDryRun));
}