Chip.selected constructor

const Chip.selected({
  1. Key? key,
  2. Widget? image,
  3. Widget? text,
  4. VoidCallback? onPressed,
  5. String? semanticLabel,
})

Creates a selected chip

Implementation

const Chip.selected({
  Key? key,
  this.image,
  this.text,
  this.onPressed,
  this.semanticLabel,
})  : _type = _ChipType.selected,
      super(key: key);