contains method

bool contains(
  1. String key
)

checks whether given key is in properties or not

Implementation

bool contains(String key) => _props.containsKey(key);