nativePlatform top-level property

String get nativePlatform

Implementation

String get nativePlatform => Platform.isAndroid
    ? 'android'
    : Platform.isIOS
        ? 'ios'
        : Platform.isMacOS
            ? 'macos'
            : Platform.isFuchsia
                ? 'fuchsia'
                : Platform.isLinux
                    ? 'linux'
                    : Platform.isWindows
                        ? 'windows'
                        : 'unknown';