FormIconButton constructor

const FormIconButton({
  1. Key? key,
  2. Widget? icon,
  3. dynamic onPressed()?,
})

Implementation

const FormIconButton({
  super.key,
  this.icon,
  this.onPressed,
});