NiceStatusBadge constructor

const NiceStatusBadge({
  1. Key? key,
  2. required String label,
  3. NiceStatusType type = NiceStatusType.active,
  4. Color? customColor,
  5. bool showDot = true,
  6. double size = 12,
})

Implementation

const NiceStatusBadge({
  super.key,
  required this.label,
  this.type = NiceStatusType.active,
  this.customColor,
  this.showDot = true,
  this.size = 12,
});