isSmallDevice top-level property

bool isSmallDevice

Implementation

bool get isSmallDevice {
  var w = deviceWidth!;
  return w >= 576 && w < 768;
}