Get a value by key
Future<String?> get(String key) async { final result = await _client.send_object(['GET', key]); return result as String?; }