hgetall method

Future<RespType> hgetall(
  1. String key
)

Implementation

Future<RespType> hgetall(String key) async {
  return tier0.execute([
    'HGETALL',
    key,
  ]);
}