isInteger property

bool get isInteger

Checks if this number is an integer.

Implementation

bool get isInteger => this % 1 == 0;