isDesktopVideoPlayerSupported top-level property

bool isDesktopVideoPlayerSupported

Returns true if the app is running on windows or linux platform.

Implementation

bool get isDesktopVideoPlayerSupported =>
    // Dart VLC is not supported on MacOS.
    !CurrentPlatform.isMacOS &&
    (CurrentPlatform.isWindows || CurrentPlatform.isLinux);