addChoice method
Implementation
void addChoice({
required String textValue,
required String help,
dynamic runtimeValue }) {
runtimeValue ??= name;
choices.add(AFConfigEntryDescription(
textValue: textValue,
runtimeValue: runtimeValue,
help: help
));
}