CustomChip constructor

const CustomChip(
  1. {Key? key,
  2. Color? backgroundColor,
  3. required String text,
  4. Color? textColor}
)

Implementation

const CustomChip({
  Key? key,
  this.backgroundColor,
  required this.text,
  this.textColor,
}) : super(key: key);