CustomProductTag constructor

const CustomProductTag({
  1. Key? key,
  2. required String text,
  3. required Color containerColor,
  4. required Color textColor,
  5. FontWeight? fontWeight,
  6. double? fontSize,
  7. required String status,
})

Implementation

const CustomProductTag(
    {Key? key,
    required this.text,
    required this.containerColor,
    required this.textColor,
    this.fontWeight,
    this.fontSize,
    required this.status})
    : super(key: key);