isEven property

bool get isEven

Returns true if the number is even.

Implementation

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