getJavaPatchNotes method
Launcher Content - Patch Notes
Implementation
@override
Future<JavaPatchNotes> getJavaPatchNotes({bool testing = false}) async {
final jsonData = await _fetchJson(
_getLauncherContentUrl('javaPatchNotes.json', testing: testing),
);
return JavaPatchNotes.fromJson(jsonData);
}