isAudioEnabled property

bool get isAudioEnabled

Indicates whether audio is currently enabled for the video.

This returns true if the video is not muted, based on the value of isMutedNotifier. It's useful for checking whether audio should be included during playback or export.

Implementation

bool get isAudioEnabled => !isMutedNotifier.value;