copyWithWrapped method

FwUpdateTestSwapArgs copyWithWrapped({
  1. Wrapped<int?>? destination,
  2. Wrapped<bool?>? autoReboot,
})

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));
}