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