deepGet method

dynamic deepGet(
  1. String path, {
  2. String separator = '.',
})

Safely retrieves and converts a value from a nested data structure using a dot-separated path.

This is a convenience wrapper around deepGetFromSegments.

Implementation

dynamic deepGet(String path, {String separator = '.'}) {
  return deep_get.deepGet(this, path, separator: separator);
}