isPlaying property

  1. @override
bool get isPlaying
override

Whether the source is currently playing (not paused or stopped).

Implementation

@override
bool get isPlaying {
  final voice = _liveVoice;
  return voice != null && !voice.isPaused;
}