copyWith method

FwUpdateSetupArgs copyWith({
  1. int? destination,
  2. int? totalSizeBytes,
})

Implementation

FwUpdateSetupArgs copyWith({int? destination, int? totalSizeBytes}) {
  return FwUpdateSetupArgs(
      destination: destination ?? this.destination,
      totalSizeBytes: totalSizeBytes ?? this.totalSizeBytes);
}