IconCardItem constructor

IconCardItem({
  1. required String imageAsset,
  2. required String label,
  3. IconData? iconData,
  4. bool isIcon = false,
})

Implementation

IconCardItem({
  required this.imageAsset,
  required this.label,
  this.iconData,
  this.isIcon = false,
});