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