copyWith method

FwUpdateTestSwapArgs copyWith({
  1. int? destination,
  2. bool? autoReboot,
})

Implementation

FwUpdateTestSwapArgs copyWith({int? destination, bool? autoReboot}) {
  return FwUpdateTestSwapArgs(
      destination: destination ?? this.destination,
      autoReboot: autoReboot ?? this.autoReboot);
}