documentPaths method

  1. @override
Map<String, APIPath>? documentPaths(
  1. APIDocumentContext context
)
override

Tells this object to return all APIPaths it handles.

This method is implemented by Router to provide the paths of an OpenAPI document and typically shouldn't be overridden by another controller.

Implementation

@override
Map<String, APIPath>? documentPaths(APIDocumentContext context) =>
    nextController?.documentPaths(context);