absorb method

Either<ParseException, IList<Json>> absorb(
  1. Uint8List buf
)

Implementation

Either<ParseException, IList<Json>> absorb(Uint8List buf) {
  _done = false;
  _data.addAll(buf);
  _len = _data.length;
  return _churn();
}