ZetaChip constructor

const ZetaChip({
  1. Key? key,
  2. bool? rounded,
  3. required String label,
  4. Widget? leading,
  5. Widget? trailing,
  6. bool? selected,
  7. VoidCallback? onTap,
  8. bool draggable = false,
  9. dynamic data,
  10. VoidCallback? onDragCompleted,
  11. ValueSetter<bool>? onToggle,
  12. String? semanticLabel,
})

Constructs a ZetaChip.

Implementation

const ZetaChip({
  super.key,
  super.rounded,
  required this.label,
  this.leading,
  this.trailing,
  this.selected,
  this.onTap,
  this.draggable = false,
  this.data,
  this.onDragCompleted,
  this.onToggle,
  this.semanticLabel,
});