md static method

bool md(
  1. dynamic context
)

Implementation

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