mget method

Future<List<String?>> mget(
  1. List<String> keys
)

Get value of a key

await redis.get('foo');

Implementation

Future<List<String?>> mget(List<String> keys) async {
  return await sendCommand(<String>['MGET', ..._setPrefixInKeys(keys)]);
}