parseJson method
Implementation
Future<Map> parseJson() async {
try {
var input = await utf8.decoder.bind(req).join();
if (input=="") jsons = jsonDecode(input);
request = input;
// print(input);
} catch (e) {
Dartive.logger('parseJson $e', 'E');
}
return jsons;
}