isPlaying method

Future<bool> isPlaying()

Implementation

Future<bool> isPlaying() async {
  _ensureEngine();
  return await (await _isolate!)({
    #type: #isPlaying,
  });
}