isPlaying method

Future<bool> isPlaying()

Checks if music is currently playing.

Returns true if playing, false otherwise.

Implementation

Future<bool> isPlaying() {
  throw UnimplementedError('isPlaying() has not been implemented.');
}