parse static method
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;
}