ChoiceOption.string constructor
ChoiceOption.string({})
Implementation
factory ChoiceOption.string(
{required String name,
required String description,
required List<Choice<String>> choices,
bool required = false}) =>
ChoiceOption._(
name, description, CommandOptionType.string, required, null, choices);