getDungeonsPatchNotes method

  1. @override
Future<DungeonsPatchNotes> getDungeonsPatchNotes({
  1. bool testing = false,
})
override

Implementation

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