maxValue static method

bool maxValue(
  1. double value,
  2. double maxValue
)

Implementation

static bool maxValue(double value, double maxValue) {
  if (value < maxValue) return true;
  return false;
}