ZetaGroupButton.dropdown constructor
- Key? key,
- bool? rounded,
- required List<
ZetaDropdownItem> ? items, - void onChange(
- ZetaDropdownItem selectedItem
- dynamic initialValue,
- IconData? icon,
- String? label,
- String? semanticLabel,
Constructs dropdown group button
Implementation
const ZetaGroupButton.dropdown({
super.key,
super.rounded,
required this.items,
this.onChange,
this.initialValue,
this.icon,
this.label,
this.semanticLabel,
}) : isFinal = false,
isInitial = false,
isInverse = false,
isLarge = true,
onPressed = null;