getBedrockPatchNotes method

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

Implementation

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