tryGetChild method

Json? tryGetChild(
  1. String key
)

Implementation

Json? tryGetChild(String key){
  if (!containsKey(key)) {
    return null;
  }
  return getChild(key);
}