call method
Implementation
@override
Future call(HttpRequest request,Map<String,dynamic> params) async {
File file = File.fromUri(Uri.file('qdot/static/index.html'));
final data = await file.readAsString();
request.response
..headers.contentType = ContentType.html
..write(data)
..close();
}