deepGet method
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);
}