I want to send parameters to my Controller using the router.go redirection.
I tried this :
this._router.go('game', {'data': 'myData'});
Is it possible to get the parameters like that :
GameController(this._scope, this._router){
print(this._router.parameters['data']);
}
If I want to "print" that, it returns null.