copyWith method

DeviceHostUpdateV3Body copyWith({
  1. DeviceHostDTO? deviceHost,
  2. bool? isDryRun,
})

Implementation

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