lg static method

bool lg(
  1. dynamic context
)

Implementation

static bool lg(context) {
  final size = MediaQuery.of(context).size.width;
  if (size >= 1024 && size < 1200) {
    return true;
  } else {
    return false;
  }
}