postJson method
dynamic
postJson(})
Implementation
postJson(String path,Function? requestHandler,{Function? errorFunction,ResponseProcessor? responseProcessor}){
jaguarMux.Route route = jaguarMux.Route.postJson(path, (context) async {
context=await _handleImplementor(context,path,requestHandler,errorFunction: errorFunction,responseProcessor: responseProcessor);
}, responseProcessor: responseProcessor,before:[cors(corsOptions)]);
routes.add(route);
}