toBool property

bool get toBool

Implementation

bool get toBool {
  // assert(this == BigInt.one || this == BigInt.zero);
  return this == BigInt.zero ? false : true;
}