FIcons constructor

const FIcons({
  1. required FIcon arrowLeft,
  2. required FIcon calendar,
  3. required FIcon check,
  4. required FIcon chevronDown,
  5. required FIcon chevronLeft,
  6. required FIcon chevronRight,
  7. required FIcon chevronUp,
  8. required FIcon chevronsUpDown,
  9. required FIcon circleAlert,
  10. required FIcon clock4,
  11. required FIcon ellipsis,
  12. required FIcon error,
  13. required FIcon eye,
  14. required FIcon eyeClosed,
  15. required FIcon gripHorizontal,
  16. required FIcon gripVertical,
  17. required FIcon loader,
  18. required FIcon loaderCircle,
  19. required FIcon loaderPinwheel,
  20. required FIcon search,
  21. required FIcon userRound,
  22. required FIcon x,
})

Creates a FIcons with the given icons.

Implementation

const FIcons({
  required this.arrowLeft,
  required this.calendar,
  required this.check,
  required this.chevronDown,
  required this.chevronLeft,
  required this.chevronRight,
  required this.chevronUp,
  required this.chevronsUpDown,
  required this.circleAlert,
  required this.clock4,
  required this.ellipsis,
  required this.error,
  required this.eye,
  required this.eyeClosed,
  required this.gripHorizontal,
  required this.gripVertical,
  required this.loader,
  required this.loaderCircle,
  required this.loaderPinwheel,
  required this.search,
  required this.userRound,
  required this.x,
});