getJson static method
Implementation
static Future<dynamic> getJson(String key, {UStorageBucket bucket = UStorageBucket.support}) async {
final String? text = await getString(key, bucket: bucket);
if (text == null) return null;
try {
return jsonDecode(text);
} on FormatException {
return null;
}
}