getFAQ method

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

Launcher Content - FAQ

Implementation

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