KntChip constructor

const KntChip({
  1. Key? key,
  2. String? text,
  3. Color? textColor,
  4. Color? backgroundColor,
  5. VoidCallback? onTap,
})

Implementation

const KntChip({
  super.key,
  this.text,
  this.textColor,
  this.backgroundColor,
  this.onTap,
});