DigitIconButton constructor

const DigitIconButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. String? iconText,
  4. IconData? icon,
  5. double? iconSize,
  6. ImageIcon? imageIcon,
  7. Color? iconColor,
  8. Color? iconTextColor,
})

Implementation

const DigitIconButton({
  super.key,
  this.onPressed,
  this.iconText,
  this.icon,
  this.iconSize,
  this.imageIcon,
  this.iconColor,
  this.iconTextColor,
});