parseError static method

Future<RedisError> parseError(
  1. LazyStream s
)

Implementation

static Future<RedisError> parseError(LazyStream s) {
  return parseSimpleString(s).then((str) => RedisError(str));
}