isLargeDevice top-level property

bool isLargeDevice

Implementation

bool get isLargeDevice {
  var w = deviceWidth!;
  return w >= 992 && w < 1200;
}