mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
7 lines
148 B
Dart
7 lines
148 B
Dart
import 'dart:io';
|
|
|
|
abstract class Util {
|
|
static bool get isDesktop {
|
|
return Platform.isLinux || Platform.isMacOS || Platform.isWindows;
|
|
}
|
|
}
|