isSmaller method

bool isSmaller(
  1. double value
)

Implementation

bool isSmaller(double value) {
  return value < _from;
}