hasValue method

bool hasValue(
  1. String path
)

Checks if path is a direct property of object. This is equivalent to the has function. Returns true if path is a direct property of object, else false.

Implementation

bool hasValue(String path) => hasObject(this, path);