unmuteChannel method

Future<void> unmuteChannel(
  1. Channel channel
)

Un-mutes the channel and updates the list.

Implementation

Future<void> unmuteChannel(Channel channel) async {
  await channel.unmute();
}