Account_DMCAList method
Get DMCA reported files list (500 results per page)
Implementation
Future<Map> Account_DMCAList({
String? page,
String per_page = "500",
String? apiKey,
}) async {
return await getDmcaList(
page: page,
per_page: per_page,
apiKey: apiKey,
);
}