FIPIconPicker constructor

const FIPIconPicker({
  1. Key? key,
  2. required FIPIconController iconController,
  3. required List<IconPack>? iconPack,
  4. required double? iconSize,
  5. required String? noResultsText,
  6. required Color? backgroundColor,
  7. Color? selectedIconBackgroundColor,
  8. double? mainAxisSpacing,
  9. double? crossAxisSpacing,
  10. Color? iconColor,
  11. bool? showTooltips,
  12. Map<String, IconPickerIcon>? customIconPack,
})

Implementation

const FIPIconPicker({
  super.key,
  required this.iconController,
  required this.iconPack,
  required this.iconSize,
  required this.noResultsText,
  required this.backgroundColor,
  this.selectedIconBackgroundColor,
  this.mainAxisSpacing,
  this.crossAxisSpacing,
  this.iconColor,
  this.showTooltips,
  this.customIconPack,
});