MaterialCustomButton constructor

const MaterialCustomButton({
  1. Key? key,
  2. Widget? icon,
  3. double? iconSize,
  4. Color? iconColor,
  5. required VoidCallback onPressed,
})

Implementation

const MaterialCustomButton({
  Key? key,
  this.icon,
  this.iconSize,
  this.iconColor,
  required this.onPressed,
}) : super(key: key);