toBool method

  1. @useResult
bool toBool()

If 0, returns false, otherwise returns true.

3.toBool(); // true
-1.toBool(); // true

0.toBool(); false

Implementation

@useResult bool toBool() => this != 0;