getMyMuteInfo method Null safety

Future<MuteInfoResponse> getMyMuteInfo()

Gets current user's mute information

Implementation

Future<MuteInfoResponse> getMyMuteInfo() async {
  return _sdk.api.send(
    ChannelMyMuteInfoGetRequest(
      channelType: channelType,
      channelUrl: channelUrl,
    ),
  );
}