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