has method

bool has(
  1. String key
)

Checks if a property exists.

Returns true if the property has been set, false otherwise.

Implementation

bool has(String key) => _properties.containsKey(key);