unmuteAll method
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(),
]);
}
Unmute All
Restores audible output for BGM, SFX, and Voice in parallel.
Future<void> unmuteAll() async {
await Future.wait([
bgm.unmute(),
sfx.unmute(),
voice.unmute(),
]);
}