createDsaReport abstract method

  1. @POST.new('/reports/dsa')
Future<ReportResponse> createDsaReport({
  1. @Body.new() required DsaReportRequest body,
})

Create DSA report.

Creates a DSA complaint report with verified email for Digital Services Act compliance.

body - Name not received - field will be skipped.

Implementation

@POST('/reports/dsa')
Future<ReportResponse> createDsaReport({
  @Body() required DsaReportRequest body,
});