redirectToDashboard method
Redirects the client to /user/dashboard.
Example:
request.redirectToDashboard();
Implementation
void redirectToDashboard() {
response.redirect(Uri.parse('/user/dashboard'));
}
Redirects the client to /user/dashboard.
Example:
request.redirectToDashboard();
void redirectToDashboard() {
response.redirect(Uri.parse('/user/dashboard'));
}