getPostGameCarnageReport function
- HttpClient http,
- GetPostGameCarnageReportParams params
Gets the available post game carnage report for the activity ID.
Implementation
Future<ServerResponse<DestinyPostGameCarnageReportData>> getPostGameCarnageReport(HttpClient http, GetPostGameCarnageReportParams params) {
return http.request(new HttpClientConfig(
'GET',
"https://www.bungie.net/Platform/Destiny2/Stats/PostGameCarnageReport/${params.activityId}/",
null,
null
));
}