ToggleGroupItem.text constructor
Implementation
factory ToggleGroupItem.text(
String value, {
String? label,
bool disabled = false,
}) {
return ToggleGroupItem(
value: value,
disabled: disabled,
child: Component.text(label ?? value),
);
}