ZetaChip constructor

const ZetaChip(
  1. {Key? key,
  2. required String label,
  3. required ZetaChipType type,
  4. Widget? leading,
  5. bool rounded = true,
  6. Widget? trailing,
  7. bool? selected,
  8. ValueSetter<bool>? onTap}
)

Constructs a ZetaChip.

Implementation

const ZetaChip({
  super.key,
  required this.label,
  required this.type,
  this.leading,
  this.rounded = true,
  this.trailing,
  this.selected,
  this.onTap,
});