copyWith method

Implementation

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