hasInValue method

bool hasInValue(
  1. String path
)

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

Implementation

bool hasInValue(String path) => hasInObject(this, path);