build method
Implementation
@override
Widget build(BuildContext context) {
String lb = selectedItem?.label ?? label;
var w = lb.rawChip(); //RawChip(label: lb.text(), padding: xy(4, 4), elevation: 3);
return w.popLabelValues(
items: items,
initialValue: selectedItem,
callback: (e) {
if (e.label == clearText) {
selectedItem = null;
} else {
selectedItem = e;
}
updateState();
onConditionChange?.call(condition());
});
}