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

12 lines
388 B
Java

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