parse static method

ParsedRowBuffer parse(
  1. Uint8List data
)

Parses binary protocol data into a ParsedRowBuffer (v1 and v2; ignores a trailing OUT1 block if present).

Throws FormatException if the data is invalid or malformed.

Implementation

static ParsedRowBuffer parse(Uint8List data) {
  return parseWithOutputs(data).rowBuffer;
}