isFraction property
bool
get
isFraction
Returns true if the number has a fractional part.
Implementation
bool get isFraction => this % 1 != 0;
Returns true if the number has a fractional part.
bool get isFraction => this % 1 != 0;