getValue method

Future<Map?> getValue(
  1. String key
)

Implementation

Future<Map?> getValue(String key) async {
  String? ret = await _exec([ "GET", prefix + key ]);
  return ret == null ? ret : jsonDecode(ret);
}