I am trying to convert my flask app to Quart ASGI, facing an issue when try to fetch request param/argument.
It gives an error when normal request is used with Quart
Example:
@app.route('/')
async def hello():
return function(request.args.get('requestID'))
Not able to fetch param argument using request.args.get('requestID') in Quart