hvals method

Future<List<String?>> hvals(
  1. String key
)

hvals

Implementation

Future<List<String?>> hvals(String key) async {
  return await _runWithRetryNew(() async {
    final result =
        (await RespCommandsTier1(_client!).hvals(key)).toArray().payload;

    if (result != null) {
      return result
          .map((e) => e.toBulkString().payload)
          .toList(growable: false);
    }
    return [];
  });
}