isOdd property Null safety
Returns true if the int value is odd
Returns false if the int value is null
Implementation
bool get isOdd => _value?.isOdd ?? false;
Returns true if the int value is odd
Returns false if the int value is null
bool get isOdd => _value?.isOdd ?? false;