getLauncherPatchNotesV2 method

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

Implementation

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