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