redirectHome method

void redirectHome()

Redirects the client to /.

Example:

request.redirectHome();

Implementation

void redirectHome() {
  response.redirect(Uri.parse('/'));
}