StatusChip constructor

const StatusChip({
  1. required String text,
  2. required ChipPosition position,
  3. Color? backgroundColor,
  4. Color? textColor,
  5. double? fontSize,
  6. FontWeight? fontWeight,
  7. double? borderRadius,
})

Implementation

const StatusChip({
  required this.text,
  required this.position,
  this.backgroundColor,
  this.textColor,
  this.fontSize,
  this.fontWeight,
  this.borderRadius,
});