isNegative property Null safety
Whether this number is negative.
Returns false if the double value is null
Implementation
bool get isNegative => _value?.isNegative ?? false;
Whether this number is negative.
Returns false if the double value is null
bool get isNegative => _value?.isNegative ?? false;