I have a route like below:
{ path: 'contact-us', component: ContactUsComponent , data: {isPrivate: false}},
When I try to get the above isPrivate value on ngOnInit() of ContactUsComponent.ts, it gives undefined:
constructor(private route: ActivatedRoute) {}
..
ngOnInit() {
this._private = this.route.snapshot.data['isPrivate'];
}