getValue method

dynamic getValue(
  1. List path, [
  2. dynamic defaultValue
])

Gets the value at path of object. If the resolved value is undefined, the defaultValue is returned in its place. This is equivalent to the get function. Returns the resolved value.

Implementation

dynamic getValue(List path, [dynamic defaultValue]) =>
    get(this, path, defaultValue);