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