SingleSelectQueryWidget<T> constructor
SingleSelectQueryWidget<T> (})
Implementation
SingleSelectQueryWidget(this.field, List<LabelValue<T>> items, {required this.label, this.clearText = "清除"}) : super() {
if (items.isNotEmpty && clearText != null) {
this.items.add(LabelValue<T>(clearText!, items.first.value));
}
this.items.addAll(items);
}