getCategoryArticles method

Future<List<HelpArticle>> getCategoryArticles(
  1. int? categoryId
)

Implementation

Future<List<HelpArticle>> getCategoryArticles(int? categoryId) async {
  return await bytedeskHttpApi.getHelpSupportArticles(categoryId);
}