blpop method
Implementation
Future<List<String?>> blpop(List<String> keys, int timeout) async {
final result = _getArray(await _execCmd(['BLPOP', ...keys, timeout]));
if (result != null) {
return result.map((e) => _getBulkString(e)).toList(growable: false);
}
return [];
}