platform_web.dart 279 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 class GeneralPlatform { static bool get isWeb => true; static bool get isMacOS => false; static bool get isWindows => false; static bool get isLinux => false; static bool get isAndroid => false; static bool get isIOS => false; static bool get isFuchsia => false; }