toggleMute method

Future<void> toggleMute()

Implementation

Future<void> toggleMute() async {
  globalMute.value = !globalMute.value;
}