I have import :
import { RouterModule, Routes} from '@angular/router';
and then I have used below line in my function inside component
this.router.navigate(['/dashboard']);
You need to pass it inside the constructor
as follows,
constructor(private router: Router){
}
Also make sure you have imported Router
as follows
import { Router } from '@angular/router';