isEven property

bool get isEven

Whether the int is even.

Implementation

bool get isEven => this % 2 == 0;