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