getObjectKey static method
Implementation
static Map? getObjectKey(String firstKey, String secKey) {
var objString = getItem(firstKey);
if (objString == null) return null;
Map obj = jsonDecode(objString);
if (!obj.containsKey(secKey)) return null;
return obj[secKey];
}