isPlaying method

  1. @override
Future<bool> isPlaying()
override

Implementation

@override
Future<bool> isPlaying() async {
  final res = await _channel.invokeMethod<bool>('$_name/isPlaying');
  return res ?? false;
}