hasKey method

bool hasKey(
  1. String key
)

Whether key is currently present in storage.

Implementation

bool hasKey(String key) => _data.containsKey(key);