clearLoadout static method
Clear the identifiers and items of a loadout.
Implementation
static Future<Int32Response> clearLoadout (
HttpClient client,
DestinyLoadoutActionRequest body
) async {
final Map<String, dynamic> params = Map<String, dynamic>();
final HttpClientConfig config = HttpClientConfig('POST', '/Destiny2/Actions/Loadouts/ClearLoadout/', params);
config.body = await body.asyncToJson();
config.bodyContentType = 'application/json';
final HttpResponse response = await client.request(config);
if(response.statusCode == 200) {
return Int32Response.asyncFromJson(response.mappedBody);
}
throw Exception(response.mappedBody);
}