isPlaying property

Future<bool> isPlaying

Get is Playing data

Implementation

static Future<bool> get isPlaying async {
  final bool playing = await _channel.invokeMethod('isPlaying');
  return playing;
}