isPlaying method

Future<bool?> isPlaying({
  1. required int id,
})

Returns true when a cast session is playing, false otherwise.

Implementation

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