Tags constructor

Tags({
  1. Key? key,
  2. required List tagList,
  3. required Color activeTagBackground,
  4. required Color tagBackground,
  5. required Color activeTagTextColor,
  6. required Color tagTextColor,
  7. required double tagBorderRadius,
  8. required double spacingBetweenTags,
  9. required dynamic onTagTapped(
    1. String
    ),
  10. required WrapAlignment alignment,
})

Implementation

Tags({
  super.key,
  required this.tagList,
  required this.activeTagBackground,
  required this.tagBackground,
  required this.activeTagTextColor,
  required this.tagTextColor,
  required this.tagBorderRadius,
  required this.spacingBetweenTags,
  required this.onTagTapped,
  required this.alignment,
});