stopPlayingFileToRemote method

Future<int> stopPlayingFileToRemote({
  1. required int sessionId,
})

Stops the file playback running on sessionId.

Returns 0 on success, negative error code on failure.

Implementation

Future<int> stopPlayingFileToRemote({required int sessionId}) async {
  throw UnimplementedError(
    'stopPlayingFileToRemote has not been implemented.',
  );
}