getSectionsForCategory method

Future<void> getSectionsForCategory(
  1. HelpdeskCategory category
)

Implementation

Future<void> getSectionsForCategory(HelpdeskCategory category) async {
  model.data = await zendeskApi.getZendeskSections(category.id,
      includeArticles: true);
  model.category = category;
  notifyListeners();
}