getDungeonsPatchNotes method
Implementation
@override
Future<DungeonsPatchNotes> getDungeonsPatchNotes({
bool testing = false,
}) async {
final jsonData = await _fetchJson(
_getLauncherContentUrl('dungeonsPatchNotes.json', testing: testing),
);
return DungeonsPatchNotes.fromJson(jsonData);
}