isFFmpegAvailable method

bool isFFmpegAvailable()

To know during runtime if FFmpeg is linked with the App.

returns true if FFmpeg is available (probably the FULL version of Flutter Sound)

Implementation

bool isFFmpegAvailable() => (kIsWeb) ? false : _hasFFmpeg;