Files
umbrix/lib/utils/platform_utils.dart
problematicconsumer b617c95f62 initial
2023-07-06 17:18:41 +03:30

7 lines
149 B
Dart

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