copyWith method
- DeviceHostDTO? deviceHost,
- bool? isDryRun,
Implementation
DeviceHostUpdateV3Body copyWith(
{enums.DeviceHostDTO? deviceHost, bool? isDryRun}) {
return DeviceHostUpdateV3Body(
deviceHost: deviceHost ?? this.deviceHost,
isDryRun: isDryRun ?? this.isDryRun);
}