contains method

bool contains(
  1. String key, {
  2. bool temp = true,
})

Implementation

bool contains(String key, {bool temp = true}) =>
    temp ? _temporary.containsKey(key) : _permanent.containsKey(key);