getBlockList static method

List<String> getBlockList()

获取黑名单

Implementation

static List<String> getBlockList() {
  List<String> ids = [];
  String? s = _spf!.getString('im_block_list');
  if (s == null) {
    return ids;
  } else {
    return s.split(',');
  }
}