unmute static method
Implementation
static Future<void> unmute(State state, ProfileViewDetailed actor) async {
await plugin.unmuteActor(actor.did);
// ignore: invalid_use_of_protected_member
state.setState(() {
actor.viewer.muted = false;
});
// ignore: use_build_context_synchronously
await timerDialog(state.context, dialog("account.unmuted"));
}