text static method
Implementation
static SelectMenu text(
String customId,
List<SelectMenuOption<String>> options, {
String? placeholder,
int? minValues,
int? maxValues,
bool? disabled,
}) =>
SelectMenu(ComponentType.textSelectMenu, customId,
placeholder: placeholder,
minValues: minValues,
maxValues: maxValues,
disabled: disabled,
options: options);