toggleMuted method

void toggleMuted()

Implementation

void toggleMuted() {
  muted.value = !muted.value;
  _persistence.saveMuted(muted.value);
}