toBool method
If 0
, returns false
, otherwise returns true
.
3.toBool(); // true
-1.toBool(); // true
0.toBool(); false
Implementation
@useResult bool toBool() => this != 0;
If 0
, returns false
, otherwise returns true
.
3.toBool(); // true
-1.toBool(); // true
0.toBool(); false
@useResult bool toBool() => this != 0;