isMedium static method

bool isMedium(
  1. double width
)

returns true if the width is in the MEDIUM range

Implementation

static bool isMedium(double width) {
  return width > SMALL && width <= MEDIUM;
}