copyWithWrapped method
Implementation
FwUpdateTestSwapArgs copyWithWrapped(
{Wrapped<int?>? destination, Wrapped<bool?>? autoReboot}) {
return FwUpdateTestSwapArgs(
destination:
(destination != null ? destination.value : this.destination),
autoReboot: (autoReboot != null ? autoReboot.value : this.autoReboot));
}