mute method

Future<void> mute({
  1. bool stopOnMute = true,
})

Mute the track associated with this publication

Implementation

Future<void> mute({bool stopOnMute = true}) async => await track?.mute(stopOnMute: stopOnMute);