mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-04-20 21:49:27 +08:00
8 lines
142 B
Dart
8 lines
142 B
Dart
import 'dart:io';
|
|
|
|
class Platforms {
|
|
static bool isDesktop() {
|
|
return Platform.isWindows || Platform.isMacOS || Platform.isLinux;
|
|
}
|
|
}
|