FlutterIconPicker constructor

const FlutterIconPicker({
  1. Key? key,
  2. bool randomIconColors = false,
  3. required ValueChanged onChanged,
  4. Color? color,
  5. double iconSize = 33,
  6. int iconsPerRow = 4,
})

Implementation

const FlutterIconPicker({
  Key? key,
  this.randomIconColors = false,
  required this.onChanged,
  this.color,
  this.iconSize = 33,
  this.iconsPerRow = 4,
}) : super(key: key);