isNegative property
bool
get
isNegative
Returns true if the number is negative.
Implementation
bool get isNegative => this != null && this! < 0;
Returns true if the number is negative.
bool get isNegative => this != null && this! < 0;