platforms.dart 253 B

123456789
  1. // 产品平台标识符
  2. class Platforms {
  3. Platforms._();
  4. static const String iOS = 'mobile-ios';
  5. static const String android = 'mobile-android';
  6. static const String windows = 'desktop-windows';
  7. static const String macOS = 'desktop-macos';
  8. }