OutlinedChip constructor

const OutlinedChip({
  1. Key? key,
  2. required String label,
  3. IconData? icon,
  4. ChipStyle? style,
  5. SdChipThemeData? theme,
  6. bool selected = false,
  7. bool enabled = true,
  8. Color? borderColor,
  9. Color? textColor,
  10. ValueChanged<bool>? onSelected,
  11. VoidCallback? onTap,
})

Creates an outlined chip.

Implementation

const OutlinedChip({
  super.key,
  required this.label,
  this.icon,
  this.style,
  this.theme,
  this.selected = false,
  this.enabled = true,
  this.borderColor,
  this.textColor,
  this.onSelected,
  this.onTap,
});