is_mobile property

bool get is_mobile

Implementation

bool get is_mobile {
  if (Dart.isWeb) {
    return false;
  }
  if (Dart.isMobile) {
    return true;
  }
  return false;
}