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