getInput method

  1. @override
I? getInput(
  1. RequestContext context
)
override

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

Implementation

@override
I? getInput(RequestContext context) => _inputCreator == null ? _apis[0].getInput(context) : _inputCreator!(context);