roundInterval method

  1. @visibleForTesting
double roundInterval(
  1. double input
)

Implementation

@visibleForTesting
double roundInterval(double input) {
  if (input < 1) {
    return _roundIntervalBelowOne(input);
  }
  return _roundIntervalAboveOne(input);
}