widthBetween method

bool widthBetween(
  1. double min,
  2. double max
)

Verifica si el ancho está entre dos valores

Implementation

bool widthBetween(double min, double max) => width >= min && width <= max;