call method

  1. @override
bool call(
  1. Map input
)
override

Implementation

@override
bool call(Map input) {
  for (final key in input.keys) {
    if (!allowedProperties.contains(key)) return false;
  }
  return true;
}