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