addChoiceSection method

void addChoiceSection(
  1. String title
)

Implementation

void addChoiceSection(String title) {
  choices.add(AFConfigEntryDescription(
    textValue: "title",
    runtimeValue: "",
    help: "",
    title: title,
  ));

}