unmuteAll method

Future<void> unmuteAll()

Unmute All

Restores audible output for BGM, SFX, and Voice in parallel.

Implementation

Future<void> unmuteAll() async {
  await Future.wait([
    bgm.unmute(),
    sfx.unmute(),
    voice.unmute(),
  ]);
}