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

12 lines
397 B
Java

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