handleRequest method
Implementation
Future handleRequest() async {
await prepareArguments();
responseStatus = HttpStatus.ok;
String ret = json.encode(await this.run());
request.response.statusCode = responseStatus;
request.response.headers.contentType = ContentType.json;
request.response.write(ret);
}