getMyMuteInfo method

Future<MuteInfo> getMyMuteInfo()

Gets my muted information in this channel.

Implementation

Future<MuteInfo> getMyMuteInfo() async {
  sbLog.i(StackTrace.current);
  checkUnsupportedAction();

  return await chat.apiClient.send(
    ChannelMyMuteInfoGetRequest(
      chat,
      channelType: channelType,
      channelUrl: channelUrl,
    ),
  );
}