ConditionalChip constructor

const ConditionalChip({
  1. Key? key,
  2. required String label,
  3. bool isDisabled = false,
  4. ChipStyle? style,
})

Creates a conditionally disabled chip.

Implementation

const ConditionalChip({
  super.key,
  required this.label,
  this.isDisabled = false,
  this.style,
});