muteChannel method

Future<void> muteChannel(
  1. Channel channel
)

Mutes the channel and updates the list.

Implementation

Future<void> muteChannel(Channel channel) async {
  await channel.mute();
}