isPhone top-level property

bool get isPhone

Implementation

bool get isPhone {
  if (kIsWeb) return false;
  if (isIOS || isAndroid) return !isTablet;
  return false;
}