reportAbuse method Null safety
- {required ReportAbuse body,
- String? onBehalfOfContentOwner}
Report a video for containing abusive content.
Implementation
Future<void> reportAbuse(
{required ReportAbuse body, String? onBehalfOfContentOwner}) async {
await _rest.reportAbuse(_authHeader, accept, body,
onBehalfOfContentOwner: onBehalfOfContentOwner);
}