hasProperty method

bool hasProperty(
  1. Object o,
  2. Object name
)

Returns true if the object o has the property name.

Implementation

bool hasProperty(Object o, Object name) => js_util.hasProperty(o, name);