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