findChoice method

AFConfigEntryDescription? findChoice(
  1. String val
)

Implementation

AFConfigEntryDescription? findChoice(String val) {
  return choices.firstWhereOrNull((e) => e.textValue == val);
}