isNull method
Returns true if this node represents a JSON null.
JSON null is represented as Dart null. This method allows you to
detect missing or empty values safely.
Example
if (node.isNull()) {
print('This node is null');
}
Implementation
@override
bool isNull() => false;