documentPaths method Null safety
- APIDocumentContext context
Tells this object to return all APIPath
s 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) ?? {};