fetchFAQs method

void fetchFAQs()

Implementation

void fetchFAQs() async {
  setBusy(true);
  await _faqService.fetchFAQs();
  setBusy(false);
  notifyListeners();
}