getGrandchild method
Returns the nested value at childKey → grandChildKey, or null if
either key is missing or the child is not a map.
Implementation
@useResult
dynamic getGrandchild(String childKey, String grandChildKey) {
final dynamic child = this[childKey];
if (child is Map<dynamic, dynamic>) {
return child[grandChildKey];
}
return null;
}