call method
- Map input
override
Implementation
@override
bool call(Map input) {
for (final MapEntry(:key, :value) in properties.entries) {
if (input.containsKey(key)) {
if (!isSubList(value, input.keys.toList())) return false;
}
}
return true;
}