hasEffectiveValue method

bool hasEffectiveValue(
  1. List<Set<String>> skuIds,
  2. String refValue
)

Implementation

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