row<T> static method
row a function to generate the SearchableChoiceDataRow.
Implementation
static SearchableChoiceDataRow row<T>({required T index, required String display}) {
return SearchableChoiceDataRow<T>(index: index, display: display);
}