greaterThan method

bool greaterThan(
  1. double other, {
  2. double precision = precisionErrorTolerance,
})

Implementation

bool greaterThan(double other, {double precision = precisionErrorTolerance}) {
  return compare(other, precision: precision) > 0;
}