addNull method
void
addNull()
Use this method if you want to store a null value.
Specifically useful when building up a vector where values can be null.
Implementation
void addNull() {
_integrityCheckOnValueAddition();
_stack.add(_StackValue.withNull());
}