tryGetObj method

JsonObject? tryGetObj(
  1. String key
)

Try child object with given key. It returns null if failed.

Implementation

JsonObject? tryGetObj(String key) => get<JsonObject?>(key);