decodeIsNull method

  1. @override
bool decodeIsNull()
override

Checks if the data is null.

Implementation

@override
bool decodeIsNull() {
  skipWhitespace();
  if (buffer[_offset] == tokenN) {
    _offset += 4;
    return true;
  } else {
    return false;
  }
}