isPlaying method

Future<bool> isPlaying()

Check current player state

Implementation

Future<bool> isPlaying() async {
  return await _channel.invokeMethod('isPlaying');
}