copyWith method
WebApiModulesInventoryRepairCreateRepairResponse
copyWith({
- String? repairId,
- WebApiModulesInventoryRepairRepair? repair,
- int? status,
- bool? success,
- String? msg,
Implementation
WebApiModulesInventoryRepairCreateRepairResponse copyWith(
{String? repairId,
WebApiModulesInventoryRepairRepair? repair,
int? status,
bool? success,
String? msg}) {
return WebApiModulesInventoryRepairCreateRepairResponse(
repairId: repairId ?? this.repairId,
repair: repair ?? this.repair,
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg);
}