evaluateDifference function
Implementation
bool evaluateDifference(List subList, e, {comparator}) {
return subList
.where((l) =>
evaluateOperation(l, e, comparator: comparator, operation: isEqual))
.toList()
.isEmpty;
}