readLenDelim method
Implementation
Uint8List readLenDelim() {
final len = readRawVarint();
final sub = _buf.sublist(_pos, _pos + len);
_pos += len;
return sub;
}
Uint8List readLenDelim() {
final len = readRawVarint();
final sub = _buf.sublist(_pos, _pos + len);
_pos += len;
return sub;
}