isEven property

bool get isEven

Returns true if the number this is even

Implementation

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