onCall method
Implementation
@override
FutureOr<Message> onCall(Request request) {
if (childrenBinding[PathSegment(request.nextPathSegment)] != null) {
return childrenBinding[PathSegment(request.nextPathSegment)]!
.findCalling
.calling(request);
} else {
throw NotFoundException(request.nextPathSegment);
}
}