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