mute method

Future<void> mute()

Mute audio (volume to 0)

Implementation

Future<void> mute() async {
  await setVolume(0);
}