decodeIntOrNull method
Decodes the data as a nullable integer value.
Implementation
@override
int? decodeIntOrNull() {
skipWhitespace();
if (buffer[_offset] == tokenN) {
_offset += 4;
return null;
} else {
return _readInt();
}
}