Can I get access to route params and data within this.router$.subscribe(...)?
More precisely can I be sure using next code
constructor(private route: ActivatedRoute, ...) {
this.router$.subscribe(
res => {
console.log(res, this.route.snapshot.params, this.route.snapshot.data);
.....
this.route.snapshot.params and this.route.snapshot.dataare matching res?