Get value of a key
await redis.get('foo');
Future<String?> get(String key) async { return await sendCommand(getCommandToGetData(key)); }