getJson<K, V> method
Implementation
Future<Map<K, V>> getJson<K, V>(
String name, {
int? cacheTtl,
}) async {
final json = await _delegate.get(
name,
interop.KVNamespaceGetOptions()
..type = 'json'
..cacheTtl = cacheTtl,
);
return dartify(json) as Map<K, V>;
}