unmute method

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

Unmute the track associated with this publication

Implementation

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