Files
umbrix/lib/utils/platform_utils.dart

7 lines
149 B
Dart
Raw Permalink Normal View History

2023-07-06 17:18:41 +03:30
import 'dart:io';
abstract class PlatformUtils {
static bool get isDesktop =>
Platform.isLinux || Platform.isWindows || Platform.isMacOS;
}