toBool property

bool get toBool

Implementation

bool get toBool {
  // assert(this == 0 || this == 1);
  return this == 0 ? false : true;
}