getDungeonsDLC method
Launcher Content - Dungeons DLCs
Implementation
@override
Future<Map<String, dynamic>> getDungeonsDLC(
String locale, {
bool testing = false,
}) async {
String url;
if (testing) {
url = '$_launcherContentBaseUrl/dungeonsDLC/testing/$locale.json';
} else {
url = '$_launcherContentBaseUrl/dungeonsDLC/$locale.json';
}
return _fetchJson(url);
}