hasKeys method

bool hasKeys(
  1. List keys
)

Implementation

bool hasKeys(List<dynamic> keys) {
  return keys.every((key) => containsKey(key));
}