getKeywordList method

List<String> getKeywordList()

根据传入的隐私政策内容获取隐私政策中需要高亮的关键字列表

Implementation

List<String> getKeywordList() {
  List<String> keywordList = [];
  for (var element in privacyContent.keywordUrlList) {
    keywordList.add(element.keyword);
  }
  return keywordList;
}