listenCreditsButton method
Listens for the 'credits button' click events and shows the credits view
Implementation
void listenCreditsButton() {
querySelector("#button_credits").onClick.listen((MouseEvent e) {
this.showCreditsView();
});
}
Listens for the 'credits button' click events and shows the credits view
void listenCreditsButton() {
querySelector("#button_credits").onClick.listen((MouseEvent e) {
this.showCreditsView();
});
}