Provide a way to add a middleware on a specific route. The code is something like below. ``` dart ... void myMiddleware(req, res, next) { ... } ... route('GET', '/', myMiddleware, (req, res) => res.write('Hello, World!')); ```