builders property

Iterable<CommandOptionChoiceBuilder> builders

Get the builders that this Choices represents.

Implementation

Iterable<CommandOptionChoiceBuilder<dynamic>> get builders => choices.entries
    .map((entry) => CommandOptionChoiceBuilder(name: entry.key, value: entry.value));