contains method

bool contains(
  1. String key
)

Whether key currently exists, including null values.

Implementation

bool contains(String key) => store.contains(key);