AccentChip constructor

const AccentChip({
  1. Key? key,
  2. required String text,
  3. Widget? leading,
  4. VoidCallback? onDeleted,
  5. Color? labelColor,
  6. Color? color,
  7. bool noMaterialTapTargetSize = false,
})

Implementation

const AccentChip({
  super.key,
  required this.text,
  this.leading,
  this.onDeleted,
  this.labelColor,
  this.color,
  this.noMaterialTapTargetSize = false,
});