contains method

bool contains(
  1. String name
)

Returns true if the property with the specific name is contained.

Implementation

bool contains(String name) => this._map.containsKey(name);