IconLabel constructor

IconLabel({
  1. Key? key,
  2. required Widget label,
  3. IconData? iconData,
  4. Color? iconColor,
  5. double? iconSize,
  6. Widget? icon,
})

Implementation

IconLabel({
  Key? key,
  required this.label,
  this.iconData,
  this.iconColor,
  this.iconSize,
  this.icon
}) : super(key: key);