get method

Future<String?> get(
  1. String key
)

get

Implementation

Future<String?> get(String key) async {
  return await _runWithRetryNew(() async {
    return (await RespCommandsTier1(_client!).get(key))
        .toBulkString()
        .payload;
  });
}