Returns the registered route pattern of the matched handler.
app.get('/posts/:id', (c) { print(routePath(c)); // '/posts/:id' return c.text('ok'); });
String? routePath(Context c) => c.routePath;