OudsChoiceChip constructor

const OudsChoiceChip({
  1. Key? key,
  2. required String text,
  3. void onClick(
    1. bool?
    )?,
  4. bool enabled = true,
  5. bool selected = false,
  6. OudsChipLeadingAvatar? leadingAvatar,
})

Creates an OUDS Choice Chip. Creates an OUDS Choice Chip.

  • text - Text to be displayed into the chip
  • onClick - Callback called on chip click.
  • enabled - The action to be executed when the chips is pressed.
  • leadingAvatar - Widget of the icon.
  • selected - Specifies whether the chips is selected or not.

Implementation

const OudsChoiceChip({
  super.key,
  required this.text,
  this.onClick,
  this.enabled = true,
  this.selected = false,
  this.leadingAvatar,
});