discord-jadx/app/src/main/java/com/discord/widgets/chat/input/models/ChannelOptionValue.java

13 lines
465 B
Java

package com.discord.widgets.chat.input.models;
import com.discord.api.channel.Channel;
import d0.z.d.m;
/* compiled from: CommandOptionValue.kt */
public final class ChannelOptionValue extends CommandOptionValue {
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public ChannelOptionValue(Channel channel) {
super(String.valueOf(channel.h()), null);
m.checkNotNullParameter(channel, "channel");
}
}