isOdd property

  1. @override
bool isOdd
override

Returns true if and only if this integer is odd.

Implementation

@override
bool get isOdd => (_i & 0x1) == 1;