GroupBadge constructor

const GroupBadge({
  1. Key? key,
  2. required String text,
  3. bool active = false,
  4. Color? activeColor,
})

Implementation

const GroupBadge({
  Key? key,
  required this.text,
  this.active = false,
  this.activeColor,
}) : super(key: key);