addValues method
void
addValues(
- AttributeMatcher valueMatcher
Implementation
void addValues(AttributeMatcher valueMatcher) {
if (valueMatcher is ValueMatcher) {
values.addAll(valueMatcher.values);
} else if (valueMatcher is NegativeMatcher) {
values.addAll(valueMatcher.values);
} else if (valueMatcher is AnyMatcher) {
_any = true;
values.add("*");
} else {
print("Unknown matcher ${valueMatcher.runtimeType}");
}
}