hasProperty<P> method

bool hasProperty<P>(
  1. String name
)

return true, if the type has a named property name the property name

Implementation

bool hasProperty<P>(String name) {
  return _properties[name] != null;
}