annotate abstract method

  1. @POST.new('/files:annotate')
Future<BatchAnnotateFilesResponse> annotate(
  1. @Header.new('Content-Type') String contentType,
  2. @Body.new() Map<String, dynamic> params
)

Run image detection and annotation for a batch of images.

Implementation

@POST('/files:annotate')
Future<BatchAnnotateFilesResponse> annotate(
  @Header('Content-Type') String contentType,
  // @Header('x-goog-user-project') String? projectId,
  @Body() Map<String, dynamic> params,
);