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