hasAll method

bool hasAll(
  1. List<String> keys
)

Checks if multiple keys exist.

Implementation

bool hasAll(List<String> keys) => keys.every(has);