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