removeAllPublishedTracks method

Future<void> removeAllPublishedTracks({
  1. bool notify = true,
})

Implementation

Future<void> removeAllPublishedTracks({bool notify = true}) async {
  final sids = trackPublications.keys.toList();
  for (final sid in sids) {
    await removePublishedTrack(sid, notify: notify);
  }
}