call method

CoreAction call(
  1. dynamic model
)
override

Implementation

CoreAction call(dynamic model) {
  if (model is Model) {
    return middleware(model);
  } else {
    return EmptyResponse();
  }
}