isNotMobile property

bool isNotMobile

Implementation

static bool get isNotMobile {
  if (kIsWeb) {
    return false;
  }
  return !isMobile;
}