get method

Route get(
  1. String url
)

Initialize a GET route

Implementation

Route get(String url) {
  return addRoute(Request.get, url);
}