CuReIconPicker constructor

const CuReIconPicker({
  1. Key? key,
  2. required List<CuReIconPickerList> icons,
  3. IconData? selectedIcon,
  4. String? label,
  5. bool? spaceBetween,
  6. Color? color,
  7. dynamic onSelected(
    1. IconData
    )?,
  8. double? size,
})

Implementation

const CuReIconPicker({
  super.key,
  required this.icons,
  this.selectedIcon,
  this.label,
  this.spaceBetween,
  this.color,
  this.onSelected,
  this.size,
});