xl static method

bool xl(
  1. dynamic context
)

Implementation

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