annotate method

Future<AnnotatedResponses> annotate(
  1. {required AnnotationRequests requests}
)

Run detection and annotation for a batch of requests.

Implementation

Future<AnnotatedResponses> annotate({required AnnotationRequests requests}) =>
    _rest.annotate(
      _authHeader,
      contentType,
      requests.toJson(),
    );