hi-client/lib/utils/platform_utils.dart
2025-10-13 18:08:02 +08:00

7 lines
149 B
Dart
Executable File

import 'dart:io';
abstract class PlatformUtils {
static bool get isDesktop =>
Platform.isLinux || Platform.isWindows || Platform.isMacOS;
}