isDesktop top-level property

bool isDesktop

Checks if the current environment is a desktop environment.

Implementation

bool get isDesktop {
  if (kIsWeb) return false;
  return [
    TargetPlatform.windows,
    TargetPlatform.linux,
    TargetPlatform.macOS,
  ].contains(defaultTargetPlatform);
}