skipNull method

bool skipNull()

Implementation

bool skipNull() {
  final b = _d.getUint8(_offset);
  if (b == 0xc0) {
    _offset += 1;
    return true;
  }
  return false;
}