call method
Implementation
FutureOr<Message> call(Request request) async {
try {
var r = await onCall(request);
return r;
} on Exception catch (e, s) {
return _binding.exceptionHandler
.getBinding(e)
.calling
.onCall(request, e, s);
}
}