documentOperationParameters method

  1. @mustCallSuper
List<APIParameter?> documentOperationParameters(
  1. APIDocumentContext context,
  2. Operation operation
)

Returns a documented list of APIParameter for operation.

This method will automatically create APIParameters for any bound properties and operation method arguments. If an operation method requires additional parameters that cannot be bound using Bind annotations, override this method. When overriding this method, call the superclass' implementation and add the additional parameters to the returned list before returning the combined list.

Implementation

@mustCallSuper
List<APIParameter?> documentOperationParameters(
    APIDocumentContext context, Operation operation) {
  return _runtime!.documenter!
      .documentOperationParameters(this, context, operation);
}