Am passing data through routing but unable to retruieve it
From another component (source of the passed data)
this._router.navigate(["/tsafety/checklist-checks", truckdetails:this.regForm.value}]);
Now in the component having the checklist-checks conmponent i have (where am sending the data)
constructor(){
this.sub = this.route.params
  .subscribe(params => {
    this.truckdetails = params["truckdetails"];
    console.log(params["truckdetails"]);
  })
}
The above console displays
[object Object]
How do i read the above parameter data when its displaying an object in the console
UPDATE ROUTES FILE
 {path:'checklist-checks', component:TruckYardChecklistComponent},