如果数字是奇数,则此属性返回布尔值true。
num.isOdd
void main() { int posNum = 10; print(posNum.isOdd); }
它将产生以下output -
false