getFrom method

dynamic getFrom(
  1. Map<String, dynamic> values
)

Looks up the selected path in values.

The path can resolve to any config value, including null.

If the target element cannot be resolved, a ConfigException is thrown.

Implementation

dynamic getFrom(Map<String, dynamic> values) => _getFrom(parts, values);