isNull property

bool get isNull

Returns whether or not current type value is null. Example:

final myNum = JsonIntNullable()..set(null);
assert(myNum.isNull);

Implementation

bool get isNull;