getInput method

  1. @override
List<Object> getInput(
  1. RequestContext context
)
override

Get the input DTO that is the source of the request to the server.

Implementation

@override
List<Object> getInput(RequestContext context){
  List<Object> inputs = [];
  for(Api api in _apis){
    inputs.add(api.getInput(context));
  }
  return inputs;
}