isZero property

bool get isZero

Checks if this BigRational is zero.

Returns true if this BigRational is zero; otherwise, false.

Implementation

bool get isZero {
  return numerator == _zero;
}