narrower method

bool narrower(
  1. double? width
)

Implementation

bool narrower(double? width) {
  return width != null ? width <= maxWidth : false;
}