wider method

bool wider(
  1. double? width
)

Implementation

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