JacTag constructor

const JacTag({
  1. Key? key,
  2. required double paddingVertical,
  3. required double paddingHorizontal,
  4. required JacTagType tagType,
  5. required JacTagShapeType tagShapeType,
  6. required JacTagColorType tagColorType,
  7. required String text,
  8. Widget? icon,
  9. required double fontSize,
})

Implementation

const JacTag(
    {super.key,
    required this.paddingVertical,
    required this.paddingHorizontal,
    required this.tagType,
    required this.tagShapeType,
    required this.tagColorType,
    required this.text,
    this.icon,
    required this.fontSize});