7 lines
149 B
Dart
Executable File
7 lines
149 B
Dart
Executable File
import 'dart:io';
|
|
|
|
abstract class PlatformUtils {
|
|
static bool get isDesktop =>
|
|
Platform.isLinux || Platform.isWindows || Platform.isMacOS;
|
|
}
|