call method

  1. @override
bool call(
  1. 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;
}