ZetaDropdownListItem constructor

const ZetaDropdownListItem({
  1. Key? key,
  2. bool? rounded,
  3. required String primaryText,
  4. required List<ZetaListItem> items,
  5. String? secondaryText,
  6. bool expanded = false,
  7. Widget? leading,
  8. bool? showDivider,
  9. String? semanticLabel,
})

Creates a new ZetaDropdownListItem

Implementation

const ZetaDropdownListItem({
  super.key,
  super.rounded,
  required this.primaryText,
  required this.items,
  this.secondaryText,
  this.expanded = false,
  this.leading,
  this.showDivider,
  this.semanticLabel,
});