hasEffectiveValue method
Implementation
bool hasEffectiveValue(List<Set<String>> skuIds, String refValue) {
bool flag = false;
skuIds.forEach((sets) {
if (sets.contains(refValue)) {
flag = true;
return;
}
});
return flag;
}