isSmall static method

bool isSmall(
  1. double width
)

returns true if the width is in the SMALL range

Implementation

static bool isSmall(double width) {
  return width > NARROW && width <= SMALL;
}