isEven property

bool isEven

Returns true if the number this is even

Implementation

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