ChannelMyMuteInfoGetRequest constructor

ChannelMyMuteInfoGetRequest({
  1. required ChannelType channelType,
  2. required String channelUrl,
  3. String? userId,
})

Implementation

ChannelMyMuteInfoGetRequest({
  required ChannelType channelType,
  required String channelUrl,
  String? userId,
}) : super(userId: userId) {
  url = '${channelType.urlString}/$channelUrl/mute/${userId ?? state.userId}';
}