isLarge static method

bool isLarge(
  1. double width
)

returns true if the width is greater than MEDIUM

Implementation

static bool isLarge(double width) {
  return width > MEDIUM;
}